diff options
author | randomdan <randomdan@localhost> | 2013-03-04 00:01:50 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2013-03-04 00:01:50 +0000 |
commit | fa75839f71f245f714042970e788c1b93d86fce9 (patch) | |
tree | c500c01a957d4b88793f3c060c84be4de01a95fb | |
parent | Fix the statement buffer length, again (diff) | |
download | libdbpp-postgresql-fa75839f71f245f714042970e788c1b93d86fce9.tar.bz2 libdbpp-postgresql-fa75839f71f245f714042970e788c1b93d86fce9.tar.xz libdbpp-postgresql-fa75839f71f245f714042970e788c1b93d86fce9.zip |
GCC 4.7 compat fixes
-rw-r--r-- | libpqpp/connection.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/libpqpp/connection.cpp b/libpqpp/connection.cpp index 7c26ecb..283f3ce 100644 --- a/libpqpp/connection.cpp +++ b/libpqpp/connection.cpp @@ -2,6 +2,7 @@ #include "error.h" #include "selectcommand.h" #include "modifycommand.h" +#include <unistd.h> static void noNoticeProcessor(void *, const char *) |