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

Commit 54813ed7 authored by Steven Moreland's avatar Steven Moreland
Browse files

Use hidl_string conversion constructor as test.

Test: hidl_test
Change-Id: I626c40e1a3121e4f41ba9f612efc7321f7c03f85
parent da32114e
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();
}