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

Commit a81e95c5 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

Change-Id: I8ffd31d5c677cc11a117e0bbc8668c70afc2cb16
parents 5ace61c4 ec0bcf0a
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();
}