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.h | |
parent | f7ffcaa7a478eaafc121e84b14dcaf2503dd5457 (diff) |
Add error checking to aapt for split generation
Change-Id: Ica627db6a671f6a6c35f98bfd9c03598ffe103ce
Diffstat (limited to 'tools/aapt/SourcePos.h')
-rw-r--r-- | tools/aapt/SourcePos.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/aapt/SourcePos.h b/tools/aapt/SourcePos.h index 4ce817f206e5..13cfb9d592a9 100644 --- a/tools/aapt/SourcePos.h +++ b/tools/aapt/SourcePos.h @@ -21,6 +21,8 @@ public: void warning(const char* fmt, ...) const; void printf(const char* fmt, ...) const; + bool operator<(const SourcePos& rhs) const; + static bool hasErrors(); static void printErrors(FILE* to); }; |