summaryrefslogtreecommitdiffabout
path: root/include/opkele/tidy.h
Unidiff
Diffstat (limited to 'include/opkele/tidy.h') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/tidy.h2
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
@@ -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) {