summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Interpreter.cpp')
-rw-r--r--src/uscxml/Interpreter.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/uscxml/Interpreter.cpp b/src/uscxml/Interpreter.cpp
index 0afdf04..3d3c181 100644
--- a/src/uscxml/Interpreter.cpp
+++ b/src/uscxml/Interpreter.cpp
@@ -2300,8 +2300,8 @@ void InterpreterImpl::setupIOProcessors() {
}
// register aliases
- std::set<std::string> names = _ioProcessors[ioProcIter->first].getNames();
- std::set<std::string>::iterator nameIter = names.begin();
+ std::list<std::string> names = _ioProcessors[ioProcIter->first].getNames();
+ std::list<std::string>::iterator nameIter = names.begin();
while(nameIter != names.end()) {
if (!boost::equal(*nameIter, ioProcIter->first))
_ioProcessors[*nameIter] = _ioProcessors[ioProcIter->first];