summaryrefslogtreecommitdiffabout
path: root/include
Side-by-side diff
Diffstat (limited to 'include') (more/less context) (ignore whitespace changes)
-rw-r--r--include/opkele/expat.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/include/opkele/expat.h b/include/opkele/expat.h
index 97ed61a..60c41ac 100644
--- a/include/opkele/expat.h
+++ b/include/opkele/expat.h
@@ -23,10 +23,8 @@ namespace opkele {
inline bool parse(const char *s,int len,bool final=false) {
assert(_x);
- return XML_Parse(_x,s,len,final); }
- enum XML_Status stop_parser(bool resumable=false) {
- assert(_x);
- return XML_StopParser(_x,resumable); }
+ return XML_Parse(_x,s,len,final);
+ }
virtual void start_element(const XML_Char *n,const XML_Char **a) { }
virtual void end_element(const XML_Char *n) { }