diff options
author | Tom Smeding <tom.smeding@gmail.com> | 2021-01-08 19:17:08 +0100 |
---|---|---|
committer | Tom Smeding <tom.smeding@gmail.com> | 2021-01-08 19:17:08 +0100 |
commit | c0fc00d9ef108e932e187717da58c990b4cf4710 (patch) | |
tree | 0f355e4f9c5133e7c1acc54c53aa0eaa9e796158 | |
parent | c66b8ded10f0d5e872e507fdff3010f732aa5449 (diff) |
Add missing include
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | seqmatcher.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -1,3 +1,4 @@ got-gui obj/ +.cache/ compile_commands.json diff --git a/seqmatcher.cpp b/seqmatcher.cpp index f0abedc..5858ea7 100644 --- a/seqmatcher.cpp +++ b/seqmatcher.cpp @@ -1,4 +1,5 @@ #include "seqmatcher.h" +#include <stdexcept> #include <cassert> |