diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-26 00:30:30 +0100 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-01-26 00:30:30 +0100 |
commit | d99179211b75fdb8a511d8641b413b3d52c94bbc (patch) | |
tree | 546779f6877cc527e88d233eee9ead3507a3b64e | |
parent | e68c220586dfd1f14283def578c4c4ef109baed4 (diff) |
Compilation fix in Release mode
-rw-r--r-- | test/plugins/xml/XmlParserTest.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/plugins/xml/XmlParserTest.cpp b/test/plugins/xml/XmlParserTest.cpp index 3660c35..7ca191e 100644 --- a/test/plugins/xml/XmlParserTest.cpp +++ b/test/plugins/xml/XmlParserTest.cpp @@ -68,7 +68,9 @@ TEST(XmlParser, generic) XmlStandaloneEnvironment env(logger); env.project->parse("generic.oxm", "", "", RttiSet{&RttiTypes::Document}, logger); +#ifdef MANAGER_GRAPHVIZ_EXPORT env.manager.exportGraphviz("xmlDocument.dot"); +#endif } } |