author | Michael Krelin <hacker@klever.net> | 2009-09-13 11:40:42 (UTC) |
---|---|---|
committer | Michael Krelin <hacker@klever.net> | 2009-09-13 11:45:19 (UTC) |
commit | cf7ef50cedc69f19e4077931fc58ef3ea44a3c87 (patch) (side-by-side diff) | |
tree | 4f4624753175a06fc7abb9a46349e6d7ab0db339 /include/opkele/tidy.h | |
parent | c5e2a9ce7d7836adaa284dee30b70e04081b0d01 (diff) | |
download | libopkele-cf7ef50cedc69f19e4077931fc58ef3ea44a3c87.zip libopkele-cf7ef50cedc69f19e4077931fc58ef3ea44a3c87.tar.gz libopkele-cf7ef50cedc69f19e4077931fc58ef3ea44a3c87.tar.bz2 |
made compiler a bit happierpublic/next
Signed-off-by: Michael Krelin <hacker@klever.net>
-rw-r--r-- | include/opkele/tidy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/opkele/tidy.h b/include/opkele/tidy.h index 059656d..039d13a 100644 --- a/include/opkele/tidy.h +++ b/include/opkele/tidy.h @@ -21,60 +21,60 @@ namespace opkele { tidy_buf_t() { tidyBufInit(&_x); } virtual ~tidy_buf_t() throw() { tidyBufFree(&_x); } inline operator const TidyBuffer&(void) const { return _x; } inline operator TidyBuffer&(void) { return _x; } inline operator const char*(void) const { return (const char*)_x.bp; } inline operator char*(void) { return (char*)_x.bp; } inline const char *c_str() const { return (const char*)_x.bp; } inline size_t size() const { return _x.size; } }; class tidy_doc_t { public: TidyDoc _x; tidy_doc_t() : _x(0) { } tidy_doc_t(TidyDoc x) : _x(x) { } virtual ~tidy_doc_t() throw() { if(_x) tidyRelease(_x); } tidy_doc_t& operator=(TidyDoc x) { if(_x) tidyRelease(_x); _x = x; return *this; } - operator const TidyDoc(void) const { return _x; } + operator TidyDoc(void) const { return _x; } operator TidyDoc(void) { return _x; } inline bool opt_set(TidyOptionId o,bool v) { assert(_x); return tidyOptSetBool(_x,o,v?yes:no); } inline bool opt_set(TidyOptionId o,int v) { assert(_x); return tidyOptSetInt(_x,o,v); } inline int parse_string(const string& s) { assert(_x); return tidyParseString(_x,s.c_str()); } inline int clean_and_repair() { assert(_x); return tidyCleanAndRepair(_x); } inline int save_buffer(TidyBuffer& ob) { assert(_x); return tidySaveBuffer(_x,&ob); } static inline TidyDoc create() { return tidyCreate(); } }; } } #endif /* __OPKELE_TIDY_H */ |