1 |
diff --git a/mysql++-1.7.40/lib/manip.h b/mysql++-1.7.40/lib/manip.h
|
2 |
index 7dab6c9..259bddb 100644
|
3 |
--- a/mysql++-1.7.40/lib/manip.h
|
4 |
+++ b/mysql++-1.7.40/lib/manip.h
|
5 |
@@ -52,6 +52,7 @@
|
6 |
#include <mysql.h>
|
7 |
|
8 |
#include <iostream>
|
9 |
+#include <cstring>
|
10 |
|
11 |
/// All global symbols in MySQL++ are in namespace mysqlpp. This is
|
12 |
/// needed because many symbols are rather generic (e.g. Row, Query...),
|
13 |
diff --git a/mysql++-1.7.40/lib/sql_query.cpp b/mysql++-1.7.40/lib/sql_query.cpp
|
14 |
index 0ee2e0a..02b69e8 100644
|
15 |
--- a/mysql++-1.7.40/lib/sql_query.cpp
|
16 |
+++ b/mysql++-1.7.40/lib/sql_query.cpp
|
17 |
@@ -30,6 +30,8 @@
|
18 |
#include "sql_query.h"
|
19 |
|
20 |
#include "exceptions.h"
|
21 |
+#include <cstdlib>
|
22 |
+#include <cstring>
|
23 |
|
24 |
using namespace std;
|
25 |
|