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

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

Use hidl_string conversion constructor as test.

am: 54813ed7

Change-Id: Ic01e8b269f8bfeace73b316683e27af237664c1a
parents af6eec2f 54813ed7
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();
}