summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.cpp
diff options
context:
space:
mode:
authorStefan Radomski <github@mintwerk.de>2017-05-14 13:11:10 (GMT)
committerStefan Radomski <github@mintwerk.de>2017-05-14 13:11:10 (GMT)
commit3e099d9fa8780a1206f2bb0a285241f156fa5138 (patch)
tree9d4b9a53f6dae4fb8c36af96e36926195d9c0ebf /src/uscxml/Interpreter.cpp
parent9b5bc11d60dd6d111661ce4aa37725046071cf6e (diff)
downloaduscxml-3e099d9fa8780a1206f2bb0a285241f156fa5138.zip
uscxml-3e099d9fa8780a1206f2bb0a285241f156fa5138.tar.gz
uscxml-3e099d9fa8780a1206f2bb0a285241f156fa5138.tar.bz2
Various bug fixes
Diffstat (limited to 'src/uscxml/Interpreter.cpp')
-rw-r--r--src/uscxml/Interpreter.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/uscxml/Interpreter.cpp b/src/uscxml/Interpreter.cpp
index 9390ca4..1a79a63 100644
--- a/src/uscxml/Interpreter.cpp
+++ b/src/uscxml/Interpreter.cpp
@@ -258,7 +258,7 @@ std::list<InterpreterIssue> Interpreter::validate() {
static void printNodeSet(Logger& logger, const std::list<XERCESC_NS::DOMElement*> nodes) {
std::string seperator;
for (auto nIter = nodes.begin(); nIter != nodes.end(); nIter++) {
- LOG(logger, USCXML_VERBATIM) << seperator << (HAS_ATTR(*nIter, kXMLCharId) ? ATTR(*nIter, kXMLCharId) : DOMUtils::xPathForNode(*nIter));
+ LOG(logger, USCXML_VERBATIM) << seperator << (HAS_ATTR(*nIter, kXMLCharId) ? ATTR(*nIter, kXMLCharId) : DOMUtils::xPathForNode(*nIter));
seperator = ", ";
}
}