Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 26bf3e75 authored by Steven Moreland's avatar Steven Moreland Committed by android-build-merger
Browse files

Use hidl_string conversion constructor as test. am: 54813ed7 am: ec0bcf0a am: a81e95c5

am: 261ab82a

Change-Id: I198f7dd423436a6f153a2a30b40065598e88b5f5
parents 75a62f5e 261ab82a
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -68,10 +68,7 @@ Return<void> Foo::doStuffAndReturnAString(
        doStuffAndReturnAString_cb _cb) {
    ALOGI("SERVER(Foo) doStuffAndReturnAString");

    hidl_string s;
    s = "Hello, world";

    _cb(s);
    _cb("Hello, world");

    return Void();
}