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

Commit 261ab82a 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

Change-Id: I51222cb8c29fe522ccd590317a85d036c203ca42
parents 30d6c66d a81e95c5
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();
}