diff options
author | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-02-05 09:13:26 -0500 |
---|---|---|
committer | Kelly Rauchenberger <fefferburbia@gmail.com> | 2017-02-05 09:13:26 -0500 |
commit | a3a033c730a2eb4242076f5b34823190aa441cd5 (patch) | |
tree | ac3a3ed28a42a56d9fbbe13e289f0ab6ef9e0e3a | |
parent | e4fa0cb86d97c23c24cd7bdd62c23f03eed312da (diff) | |
download | verbly-a3a033c730a2eb4242076f5b34823190aa441cd5.tar.gz verbly-a3a033c730a2eb4242076f5b34823190aa441cd5.tar.bz2 verbly-a3a033c730a2eb4242076f5b34823190aa441cd5.zip |
Added some missing includes
-rw-r--r-- | lib/form.cpp | 1 | ||||
-rw-r--r-- | lib/token.cpp | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/lib/form.cpp b/lib/form.cpp index fe7d104..4548582 100644 --- a/lib/form.cpp +++ b/lib/form.cpp | |||
@@ -1,5 +1,6 @@ | |||
1 | #include "form.h" | 1 | #include "form.h" |
2 | #include <sqlite3.h> | 2 | #include <sqlite3.h> |
3 | #include <algorithm> | ||
3 | #include "filter.h" | 4 | #include "filter.h" |
4 | #include "database.h" | 5 | #include "database.h" |
5 | #include "query.h" | 6 | #include "query.h" |
diff --git a/lib/token.cpp b/lib/token.cpp index 769acad..d2024b8 100644 --- a/lib/token.cpp +++ b/lib/token.cpp | |||
@@ -1,5 +1,6 @@ | |||
1 | #include "token.h" | 1 | #include "token.h" |
2 | #include <stdexcept> | 2 | #include <stdexcept> |
3 | #include <algorithm> | ||
3 | #include "util.h" | 4 | #include "util.h" |
4 | 5 | ||
5 | namespace verbly { | 6 | namespace verbly { |