diff options
author | Adam Lesinski <adamlesinski@google.com> | 2017-11-09 11:29:39 -0800 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2017-11-16 12:06:17 -0800 |
commit | a693c4a32ebed4e96dcc1cf6a706e8ebbb004db2 (patch) | |
tree | 902f4d5abd493ccb8087b941676e2562c8db128b /tools/aapt2/Resource.h | |
parent | 60303333dc8ad61e640992cee2b5c601be73faf8 (diff) |
AAPT2: Move all file output to FileOutputStream
FileOutputStream is safe to use on Windows, as it opens
files using our compatibility API.
Bug: 68262818
Test: make aapt2_tests
Change-Id: Ib0b27e93edd609b49b1327db7d9867a002198ebb
Diffstat (limited to 'tools/aapt2/Resource.h')
-rw-r--r-- | tools/aapt2/Resource.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/aapt2/Resource.h b/tools/aapt2/Resource.h index 96a02033fc1d..6fcf0f6d19cd 100644 --- a/tools/aapt2/Resource.h +++ b/tools/aapt2/Resource.h @@ -268,6 +268,11 @@ inline ::std::ostream& operator<<(::std::ostream& out, const ResourceId& res_id) return out << res_id.to_string(); } +// For generic code to call 'using std::to_string; to_string(T);'. +inline std::string to_string(const ResourceId& id) { + return id.to_string(); +} + // // ResourceType implementation. // |