Add <cassert> header include

This fixes some Linux build failures.
This commit is contained in:
2021-12-09 13:53:52 +00:00
parent 290126fd00
commit 3578b298aa
28 changed files with 52 additions and 26 deletions

View File

@@ -1,4 +1,5 @@
#include <algorithm>
#include <cassert>
#include <cstdlib>
#include <iostream>
#include <limits>
@@ -135,4 +136,4 @@ int main()
state.execute(instructions[state.pc_]);
}
std::cout << "a = " << state.a_ << "\nb = " << state.b_ << '\n';
}
}