diff options
Diffstat (limited to 'src/uscxml/interpreter/InterpreterImpl.h')
-rw-r--r-- | src/uscxml/interpreter/InterpreterImpl.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/uscxml/interpreter/InterpreterImpl.h b/src/uscxml/interpreter/InterpreterImpl.h index f4fe93e..1243f7c 100644 --- a/src/uscxml/interpreter/InterpreterImpl.h +++ b/src/uscxml/interpreter/InterpreterImpl.h @@ -25,6 +25,7 @@ #include <list> #include <map> #include <string> +#include <limits> #include "uscxml/Common.h" #include "uscxml/util/URL.h" @@ -107,7 +108,7 @@ public: MicrostepCallbacks */ virtual Event dequeueInternal() { - _currEvent = _internalQueue.dequeue(false); + _currEvent = _internalQueue.dequeue(0); if (_currEvent) _dataModel.setEvent(_currEvent); return _currEvent; |