Major breaking changes
This commit is contained in:
@@ -37,7 +37,7 @@ set_source_files_properties(${llxml_HEADER_FILES}
|
||||
list(APPEND llxml_SOURCE_FILES ${llxml_HEADER_FILES})
|
||||
|
||||
add_library (llxml ${llxml_SOURCE_FILES})
|
||||
add_dependencies(llxml prepare)
|
||||
|
||||
target_link_libraries(
|
||||
llxml
|
||||
${EXPAT_LIBRARIES}
|
||||
|
||||
@@ -263,7 +263,7 @@ void AIXMLElement::close_child(void)
|
||||
mIndentation -= 2;
|
||||
}
|
||||
|
||||
AIXMLElement::~AIXMLElement()
|
||||
AIXMLElement::~AIXMLElement() noexcept(false)
|
||||
{
|
||||
if (mHasChildren)
|
||||
{
|
||||
|
||||
@@ -64,7 +64,7 @@ class AIXMLElement
|
||||
|
||||
public:
|
||||
AIXMLElement(std::ostream& os, char const* name, int indentation);
|
||||
~AIXMLElement();
|
||||
~AIXMLElement() noexcept(false);
|
||||
|
||||
template<typename T>
|
||||
void attribute(char const* name, T const& attribute);
|
||||
|
||||
Reference in New Issue
Block a user