diff options
Diffstat (limited to 'test/src/test-issue-reporting.cpp')
-rw-r--r-- | test/src/test-issue-reporting.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/src/test-issue-reporting.cpp b/test/src/test-issue-reporting.cpp index 39dad05..98c2a21 100644 --- a/test/src/test-issue-reporting.cpp +++ b/test/src/test-issue-reporting.cpp @@ -5,7 +5,7 @@ using namespace uscxml; std::set<std::string> issueLocationsForXML(const std::string xml) { - Interpreter interpreter = Interpreter::fromXML(xml); + Interpreter interpreter = Interpreter::fromXML(xml, ""); std::list<InterpreterIssue> issues = interpreter.validate(); std::set<std::string> issueLocations; @@ -52,7 +52,7 @@ int main(int argc, char** argv) { "</scxml>"; IssueMonitor monitor; - Interpreter interpreter = Interpreter::fromXML(xml); + Interpreter interpreter = Interpreter::fromXML(xml, ""); interpreter.addMonitor(&monitor); interpreter.interpret(); |