diff options
author | Adam Lesinski <adamlesinski@google.com> | 2014-11-03 12:03:08 -0800 |
---|---|---|
committer | Adam Lesinski <adamlesinski@google.com> | 2014-11-03 15:55:44 -0800 |
commit | de7de47fef1dcaa26d553665d89e4d3792325c3f (patch) | |
tree | 0d9551d2f037b841f325bbbd3ba27a309e9441b3 /tools/aapt/SourcePos.cpp | |
parent | f7ffcaa7a478eaafc121e84b14dcaf2503dd5457 (diff) |
Add error checking to aapt for split generation
Change-Id: Ica627db6a671f6a6c35f98bfd9c03598ffe103ce
Diffstat (limited to 'tools/aapt/SourcePos.cpp')
-rw-r--r-- | tools/aapt/SourcePos.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tools/aapt/SourcePos.cpp b/tools/aapt/SourcePos.cpp index ae25047371bc..38643201c22d 100644 --- a/tools/aapt/SourcePos.cpp +++ b/tools/aapt/SourcePos.cpp @@ -141,6 +141,12 @@ SourcePos::printf(const char* fmt, ...) const } bool +SourcePos::operator<(const SourcePos& rhs) const +{ + return (file < rhs.file) || (line < rhs.line); +} + +bool SourcePos::hasErrors() { return g_errors.size() > 0; |