summary refs log tree commit diff stats
path: root/lib
diff options
context:
space:
mode:
authorKelly Rauchenberger <fefferburbia@gmail.com>2017-02-05 09:13:26 -0500
committerKelly Rauchenberger <fefferburbia@gmail.com>2017-02-05 09:13:26 -0500
commita3a033c730a2eb4242076f5b34823190aa441cd5 (patch)
treeac3a3ed28a42a56d9fbbe13e289f0ab6ef9e0e3a /lib
parente4fa0cb86d97c23c24cd7bdd62c23f03eed312da (diff)
downloadverbly-a3a033c730a2eb4242076f5b34823190aa441cd5.tar.gz
verbly-a3a033c730a2eb4242076f5b34823190aa441cd5.tar.bz2
verbly-a3a033c730a2eb4242076f5b34823190aa441cd5.zip
Added some missing includes
Diffstat (limited to 'lib')
-rw-r--r--lib/form.cpp1
-rw-r--r--lib/token.cpp1
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
5namespace verbly { 6namespace verbly {