aboutsummaryrefslogtreecommitdiff
path: root/xml/serializer.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/serializer.cxx
parent77bc33bcdf611d0f5c703d3d8e20d6f5aff8814c (diff)
Work around symbol exporting issues, throw() deprecation
Diffstat (limited to 'xml/serializer.cxx')
-rw-r--r--xml/serializer.cxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/xml/serializer.cxx b/xml/serializer.cxx
index 700243f..082f62d 100644
--- a/xml/serializer.cxx
+++ b/xml/serializer.cxx
@@ -13,23 +13,6 @@ namespace xml
{
// serialization
//
- serialization::
- ~serialization () throw () {}
-
- serialization::
- serialization (const string& n, const string& d)
- : name_ (n), description_ (d)
- {
- init ();
- }
-
- serialization::
- serialization (const serializer& s, const std::string& d)
- : name_ (s.output_name ()), description_ (d)
- {
- init ();
- }
-
void serialization::
init ()
{
@@ -43,12 +26,6 @@ namespace xml
what_ += description_;
}
- char const* serialization::
- what () const throw ()
- {
- return what_.c_str ();
- }
-
// serializer
//
extern "C" genxStatus