summaryrefslogtreecommitdiffabout
path: root/include/opkele/expat.h
Unidiff
Diffstat (limited to 'include/opkele/expat.h') (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 {
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 enum XML_Status stop_parser(bool resumable=false) { 27 }
28 assert(_x);
29 return XML_StopParser(_x,resumable); }
30 28
31 virtual void start_element(const XML_Char *n,const XML_Char **a) { } 29 virtual void start_element(const XML_Char *n,const XML_Char **a) { }
32 virtual void end_element(const XML_Char *n) { } 30 virtual void end_element(const XML_Char *n) { }