Skip to content

Commit b9008eb

Browse files
author
Vaughn
committed
Fix preprocessor control flow
1 parent 0b9e699 commit b9008eb

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

modules/c++/xml.lite/include/xml/lite/Document.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,6 @@ struct CODA_OSS_API Document // SOAPDocument derives :-(
104104
virtual Element *createElement(const std::string & qname, const std::string & uri, std::string characterData = "");
105105
std::unique_ptr<Element> createElement(const xml::lite::QName&, const std::string& characterData) const;
106106
std::unique_ptr<Element> createElement(const xml::lite::QName&, const std::u8string& characterData) const;
107-
#endif // SWIG
108107

109108
/*!
110109
* Blanket destructor. This thing deletes everything

modules/c++/xml.lite/include/xml/lite/Element.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,6 @@ struct CODA_OSS_API Element // SOAPElement derives :-(
8787
static std::unique_ptr<Element> create(const std::string& qname, const std::string& uri = "", const std::string& characterData = "");
8888
static std::unique_ptr<Element> create(const xml::lite::QName&, const std::string& characterData = "");
8989
static std::unique_ptr<Element> create(const xml::lite::QName&, const std::u8string&);
90-
#endif // SWIG
9190

9291
//! Destructor
9392
virtual ~Element() noexcept(false)

0 commit comments

Comments
 (0)