diff options
Diffstat (limited to 'tools/aapt/SourcePos.h')
-rw-r--r-- | tools/aapt/SourcePos.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/tools/aapt/SourcePos.h b/tools/aapt/SourcePos.h index 33f72a9..4ce817f 100644 --- a/tools/aapt/SourcePos.h +++ b/tools/aapt/SourcePos.h @@ -17,8 +17,9 @@ public: SourcePos(); ~SourcePos(); - int error(const char* fmt, ...) const; - int warning(const char* fmt, ...) const; + void error(const char* fmt, ...) const; + void warning(const char* fmt, ...) const; + void printf(const char* fmt, ...) const; static bool hasErrors(); static void printErrors(FILE* to); |