aboutsummaryrefslogtreecommitdiff
path: root/xml/parser.cxx
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-08-31 12:57:38 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-08-31 12:57:38 +0200
commit665b6242fc338bb21ee8ac5131012cf6d230ed1e (patch)
tree7eee3cfa76277eb395e46ee07047860a0d881fd5 /xml/parser.cxx
parent77bc33bcdf611d0f5c703d3d8e20d6f5aff8814c (diff)
Work around symbol exporting issues, throw() deprecation
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[] =