summaryrefslogtreecommitdiff
path: root/tools/aapt2/Flags.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tools/aapt2/Flags.cpp')
-rw-r--r--tools/aapt2/Flags.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aapt2/Flags.cpp b/tools/aapt2/Flags.cpp
index 666e8a8efff1..2033a4ce45dc 100644
--- a/tools/aapt2/Flags.cpp
+++ b/tools/aapt2/Flags.cpp
@@ -101,7 +101,7 @@ void Flags::usage(const StringPiece& command, std::ostream* out) {
// Split the description by newlines and write out the argument (which is empty after
// the first line) followed by the description line. This will make sure that multiline
// descriptions are still right justified and aligned.
- for (StringPiece line : util::tokenize<char>(flag.description, '\n')) {
+ for (StringPiece line : util::tokenize(flag.description, '\n')) {
*out << " " << std::setw(kWidth) << std::left << argLine << line << "\n";
argLine = " ";
}