|
Line
Link Here
|
| 0 |
-- libpqxx-2.6.9.orig/src/transaction_base.cxx |
0 |
++ libpqxx-2.6.9/src/transaction_base.cxx |
|
Lines 18-23
Link Here
|
| 18 |
*/ |
18 |
*/ |
| 19 |
#include "pqxx/compiler-internal.hxx" |
19 |
#include "pqxx/compiler-internal.hxx" |
| 20 |
|
20 |
|
|
|
21 |
#include <cstring> |
| 21 |
#include <stdexcept> |
22 |
#include <stdexcept> |
| 22 |
|
23 |
|
| 23 |
#include "pqxx/connection_base" |
24 |
#include "pqxx/connection_base" |
| 24 |
-- libpqxx-2.6.9.orig/src/binarystring.cxx |
25 |
++ libpqxx-2.6.9/src/binarystring.cxx |
|
Lines 16-21
Link Here
|
| 16 |
*/ |
16 |
*/ |
| 17 |
#include "pqxx/compiler-internal.hxx" |
17 |
#include "pqxx/compiler-internal.hxx" |
| 18 |
|
18 |
|
|
|
19 |
#include <cstring> |
| 19 |
#include <new> |
20 |
#include <new> |
| 20 |
#include <stdexcept> |
21 |
#include <stdexcept> |
| 21 |
|
22 |
|
| 22 |
-- libpqxx-2.6.9.orig/src/result.cxx |
23 |
++ libpqxx-2.6.9/src/result.cxx |
|
Lines 17-22
Link Here
|
| 17 |
*/ |
17 |
*/ |
| 18 |
#include "pqxx/compiler-internal.hxx" |
18 |
#include "pqxx/compiler-internal.hxx" |
| 19 |
|
19 |
|
|
|
20 |
#include <cstdlib> |
| 21 |
#include <cstring> |
| 20 |
#include <stdexcept> |
22 |
#include <stdexcept> |
| 21 |
|
23 |
|
| 22 |
#include "libpq-fe.h" |
24 |
#include "libpq-fe.h" |
|
Lines 44-50
Link Here
|
| 44 |
pqxx::internal::result_data::~result_data() { PQclear(data); } |
46 |
pqxx::internal::result_data::~result_data() { PQclear(data); } |
| 45 |
|
47 |
|
| 46 |
|
48 |
|
| 47 |
void pqxx::internal::freemem_result_data(result_data *d) throw () { delete d; } |
49 |
void PQXX_LIBEXPORT pqxx::internal::freemem_result_data(result_data *d) throw () { delete d; } |
| 48 |
|
50 |
|
| 49 |
|
51 |
|
| 50 |
pqxx::result::result(pqxx::internal::pq::PGresult *rhs, |
52 |
pqxx::result::result(pqxx::internal::pq::PGresult *rhs, |
| 51 |
-- libpqxx-2.6.9.orig/src/cursor.cxx |
53 |
++ libpqxx-2.6.9/src/cursor.cxx |
|
Lines 18-23
Link Here
|
| 18 |
#include "pqxx/compiler-internal.hxx" |
18 |
#include "pqxx/compiler-internal.hxx" |
| 19 |
|
19 |
|
| 20 |
#include <cstdlib> |
20 |
#include <cstdlib> |
|
|
21 |
#include <cstring> |
| 21 |
|
22 |
|
| 22 |
#include "pqxx/cursor" |
23 |
#include "pqxx/cursor" |
| 23 |
#include "pqxx/result" |
24 |
#include "pqxx/result" |
| 24 |
-- libpqxx-2.6.9.orig/src/connection_base.cxx |
25 |
++ libpqxx-2.6.9/src/connection_base.cxx |
|
Lines 21-26
Link Here
|
| 21 |
#include <cassert> |
21 |
#include <cassert> |
| 22 |
#include <cerrno> |
22 |
#include <cerrno> |
| 23 |
#include <cstdio> |
23 |
#include <cstdio> |
|
|
24 |
#include <cstring> |
| 24 |
#include <ctime> |
25 |
#include <ctime> |
| 25 |
#include <stdexcept> |
26 |
#include <stdexcept> |
| 26 |
|
27 |
|
| 27 |
-- libpqxx-2.6.9.orig/test/test003.cxx |
28 |
++ libpqxx-2.6.9/test/test003.cxx |
|
Lines 1-4
Link Here
|
| 1 |
#include <cstdio> |
1 |
#include <cstdio> |
|
|
2 |
#include <cstdlib> |
| 2 |
#include <iostream> |
3 |
#include <iostream> |
| 3 |
#include <stdexcept> |
4 |
#include <stdexcept> |
| 4 |
|
5 |
|
| 5 |
-- libpqxx-2.6.9.orig/test/test092.cxx |
6 |
++ libpqxx-2.6.9/test/test092.cxx |
|
Lines 1-4
Link Here
|
| 1 |
#include <cassert> |
1 |
#include <cassert> |
|
|
2 |
#include <cstring> |
| 2 |
#include <iostream> |
3 |
#include <iostream> |
| 3 |
#include <list> |
4 |
#include <list> |
| 4 |
|
5 |
|
| 5 |
-- libpqxx-2.6.9.orig/test/test030.cxx |
6 |
++ libpqxx-2.6.9/test/test030.cxx |
|
Lines 1-4
Link Here
|
| 1 |
#include <cstdio> |
1 |
#include <cstdio> |
|
|
2 |
#include <cstring> |
| 2 |
#include <iostream> |
3 |
#include <iostream> |
| 3 |
|
4 |
|
| 4 |
#include <pqxx/connection> |
5 |
#include <pqxx/connection> |
| 5 |
-- libpqxx-2.6.9.orig/test/test022.cxx |
6 |
++ libpqxx-2.6.9/test/test022.cxx |
|
Lines 1-4
Link Here
|
| 1 |
#include <cstdio> |
1 |
#include <cstdio> |
|
|
2 |
#include <cstdlib> |
| 2 |
#include <iostream> |
3 |
#include <iostream> |
| 3 |
#include <stdexcept> |
4 |
#include <stdexcept> |
| 4 |
|
5 |
|
| 5 |
-- libpqxx-2.6.9.orig/test/test011.cxx |
6 |
++ libpqxx-2.6.9/test/test011.cxx |
|
Lines 1-4
Link Here
|
| 1 |
#include <cstdio> |
1 |
#include <cstdio> |
|
|
2 |
#include <cstring> |
| 2 |
#include <iostream> |
3 |
#include <iostream> |
| 3 |
|
4 |
|
| 4 |
#include <pqxx/connection> |
5 |
#include <pqxx/connection> |