diff options
author | Adam Lesinski <adamlesinski@google.com> | 2015-04-10 19:43:55 -0700 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2015-04-15 19:56:59 -0700 |
commit | 769de98f2dd41bfe39a1c9f76aefd1ad58942733 (patch) | |
tree | 3d79143b08f02dfb61158689f51e01eeb1bb371e /tools/aapt2/ResourceTable_test.cpp | |
parent | 9310e4285b3fc951c3524d040726d1161015562c (diff) | |
download | frameworks_base-769de98f2dd41bfe39a1c9f76aefd1ad58942733.zip frameworks_base-769de98f2dd41bfe39a1c9f76aefd1ad58942733.tar.gz frameworks_base-769de98f2dd41bfe39a1c9f76aefd1ad58942733.tar.bz2 |
AAPT2: Add library support
Change-Id: I307f56d9631784ab29ee4156d94886f9b2f25b30
Diffstat (limited to 'tools/aapt2/ResourceTable_test.cpp')
-rw-r--r-- | tools/aapt2/ResourceTable_test.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/aapt2/ResourceTable_test.cpp b/tools/aapt2/ResourceTable_test.cpp index 785ea15..06d8699 100644 --- a/tools/aapt2/ResourceTable_test.cpp +++ b/tools/aapt2/ResourceTable_test.cpp @@ -31,7 +31,7 @@ struct TestValue : public Value { TestValue(StringPiece16 str) : value(str.toString()) { } - TestValue* clone() const override { + TestValue* clone(StringPool* /*newPool*/) const override { return new TestValue(value); } @@ -48,7 +48,7 @@ struct TestWeakValue : public Value { return true; } - TestWeakValue* clone() const override { + TestWeakValue* clone(StringPool* /*newPool*/) const override { return new TestWeakValue(); } |