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) (unidiff) | |
tree | 4f4624753175a06fc7abb9a46349e6d7ab0db339 | |
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/expat.h | 2 | ||||
-rw-r--r-- | include/opkele/tidy.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/include/opkele/expat.h b/include/opkele/expat.h index 21be003..c154785 100644 --- a/include/opkele/expat.h +++ b/include/opkele/expat.h | |||
@@ -15,13 +15,13 @@ namespace opkele { | |||
15 | expat_t() : _x(0) { } | 15 | expat_t() : _x(0) { } |
16 | expat_t(XML_Parser x) : _x(x) { } | 16 | expat_t(XML_Parser x) : _x(x) { } |
17 | virtual ~expat_t() throw(); | 17 | virtual ~expat_t() throw(); |
18 | 18 | ||
19 | expat_t& operator=(XML_Parser x); | 19 | expat_t& operator=(XML_Parser x); |
20 | 20 | ||
21 | operator const XML_Parser(void) const { return _x; } | 21 | operator XML_Parser(void) const { return _x; } |
22 | operator XML_Parser(void) { return _x; } | 22 | operator XML_Parser(void) { return _x; } |
23 | 23 | ||
24 | inline bool parse(const char *s,int len,bool final=false) { | 24 | inline bool parse(const char *s,int len,bool final=false) { |
25 | assert(_x); | 25 | assert(_x); |
26 | return XML_Parse(_x,s,len,final); | 26 | return XML_Parse(_x,s,len,final); |
27 | } | 27 | } |
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 | |||
@@ -47,13 +47,13 @@ namespace opkele { | |||
47 | tidy_doc_t& operator=(TidyDoc x) { | 47 | tidy_doc_t& operator=(TidyDoc x) { |
48 | if(_x) tidyRelease(_x); | 48 | if(_x) tidyRelease(_x); |
49 | _x = x; | 49 | _x = x; |
50 | return *this; | 50 | return *this; |
51 | } | 51 | } |
52 | 52 | ||
53 | operator const TidyDoc(void) const { return _x; } | 53 | operator TidyDoc(void) const { return _x; } |
54 | operator TidyDoc(void) { return _x; } | 54 | operator TidyDoc(void) { return _x; } |
55 | 55 | ||
56 | inline bool opt_set(TidyOptionId o,bool v) { | 56 | inline bool opt_set(TidyOptionId o,bool v) { |
57 | assert(_x); | 57 | assert(_x); |
58 | return tidyOptSetBool(_x,o,v?yes:no); } | 58 | return tidyOptSetBool(_x,o,v?yes:no); } |
59 | inline bool opt_set(TidyOptionId o,int v) { | 59 | inline bool opt_set(TidyOptionId o,int v) { |