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