aboutsummaryrefslogtreecommitdiff
path: root/xml/parser.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'xml/parser.cxx')
-rw-r--r--xml/parser.cxx29
1 files changed, 0 insertions, 29 deletions
diff --git a/xml/parser.cxx b/xml/parser.cxx
index 8cec4a1..cadbd6d 100644
--- a/xml/parser.cxx
+++ b/xml/parser.cxx
@@ -17,29 +17,6 @@ namespace xml
{
// parsing
//
- parsing::
- ~parsing () throw () {}
-
- parsing::
- parsing (const string& n,
- unsigned long long l,
- unsigned long long c,
- const string& d)
- : name_ (n), line_ (l), column_ (c), description_ (d)
- {
- init ();
- }
-
- parsing::
- parsing (const parser& p, const std::string& d)
- : name_ (p.input_name ()),
- line_ (p.line ()),
- column_ (p.column ()),
- description_ (d)
- {
- init ();
- }
-
void parsing::
init ()
{
@@ -50,12 +27,6 @@ namespace xml
what_ = os.str ();
}
- char const* parsing::
- what () const throw ()
- {
- return what_.c_str ();
- }
-
// parser::event_type
//
static const char* parser_event_str[] =