about summary refs log tree commit diff
path: root/src/libutil/xml-writer.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/libutil/xml-writer.hh')
-rw-r--r--src/libutil/xml-writer.hh6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/libutil/xml-writer.hh b/src/libutil/xml-writer.hh
index fee2eb495eaf..3cefe3712c08 100644
--- a/src/libutil/xml-writer.hh
+++ b/src/libutil/xml-writer.hh
@@ -19,7 +19,7 @@ typedef map<string, string> XMLAttrs;
 class XMLWriter
 {
 private:
-    
+
     std::ostream & output;
 
     bool indent;
@@ -40,8 +40,6 @@ public:
 
     void writeEmptyElement(const string & name,
         const XMLAttrs & attrs = XMLAttrs());
-    
-    void writeCharData(const string & data);
 
 private:
     void writeAttrs(const XMLAttrs & attrs);
@@ -67,5 +65,5 @@ public:
     }
 };
 
- 
+
 }