Skip to content

Commit

Permalink
Altered constructor arrangement
Browse files Browse the repository at this point in the history
  • Loading branch information
X39 committed Feb 15, 2020
1 parent 3317dd7 commit 36bd278
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/virtualmachine.h
Original file line number Diff line number Diff line change
Expand Up @@ -137,8 +137,8 @@ namespace sqf
void execute_helper_execution_abort();
bool execute_helper_execution_end();
public:
virtualmachine(Logger& logger) : virtualmachine(logger, 0) {};
virtualmachine(Logger& logger, unsigned long long maxinst);
virtualmachine(Logger& logger) : virtualmachine(logger, 0) {};
~virtualmachine();

void push_macro(sqf::parse::macro macro) { m_preprocessor_macros.push_back(macro); }
Expand Down

0 comments on commit 36bd278

Please sign in to comment.