diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-04-01 00:32:09 +0200 |
---|---|---|
committer | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2016-04-25 22:19:28 +0200 |
commit | c191519ce36097d4f1855f90524861d909818512 (patch) | |
tree | 6d156d137f5c33df4c89022a3c46f78f61cfaeaf | |
parent | 7072de43741fa1ef20427ad9232c47ba26d65621 (diff) |
Add missing include which accidently got removed during rebase
-rw-r--r-- | src/core/parser/stack/TokenStack.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/parser/stack/TokenStack.cpp b/src/core/parser/stack/TokenStack.cpp index 95424c7..9175ff4 100644 --- a/src/core/parser/stack/TokenStack.cpp +++ b/src/core/parser/stack/TokenStack.cpp @@ -16,6 +16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include <algorithm> #include <cassert> #include "TokenStack.hpp" |