Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/uscxml/interpreter/InterpreterMonitor.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@
#include "uscxml/interpreter/Logging.h"
#include "uscxml/debug/InterpreterIssue.h"

#include <functional>
#include <mutex>

#define USCXML_MONITOR_CATCH(callback) \
Expand Down Expand Up @@ -211,7 +212,6 @@ class USCXML_API LambdaMonitor : public InterpreterMonitor {
const std::string& stateName,
const XERCESC_NS::DOMElement* state)> callback,
bool after = false) {
_beforeEnteringState = callback;
if (after) {
_afterEnteringState = callback;
} else {
Expand Down