diff options
author | Adam Lesinski <adamlesinski@google.com> | 2017-10-20 19:15:54 +0000 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2017-10-20 19:15:54 +0000 |
commit | 7fd74b5ad1df53b92f08a9aa2f3d445bf7b786fe (patch) | |
tree | 03bbf941ec0fead1ad64ba2acd06113486a612c1 /tools/aapt2/ResourceValues.cpp | |
parent | 4bf7416a062af25574f548846e60e88df332cc55 (diff) | |
parent | e59f0d80ec19249f72c07ae191ad673d040443e3 (diff) |
Merge changes I1a4b3ce5,Id7216e5b
* changes:
AAPT2: Enable building proto artifacts
AAPT2: Define and Implement AAPT Container Format
Diffstat (limited to 'tools/aapt2/ResourceValues.cpp')
-rw-r--r-- | tools/aapt2/ResourceValues.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/aapt2/ResourceValues.cpp b/tools/aapt2/ResourceValues.cpp index 608316083f41..082fd86604da 100644 --- a/tools/aapt2/ResourceValues.cpp +++ b/tools/aapt2/ResourceValues.cpp @@ -292,6 +292,7 @@ bool FileReference::Flatten(android::Res_value* out_value) const { FileReference* FileReference::Clone(StringPool* new_pool) const { FileReference* fr = new FileReference(new_pool->MakeRef(path)); fr->file = file; + fr->type = type; fr->comment_ = comment_; fr->source_ = source_; return fr; |