diff options
| author | Alan Conway <aconway@apache.org> | 2008-03-25 13:34:44 +0000 |
|---|---|---|
| committer | Alan Conway <aconway@apache.org> | 2008-03-25 13:34:44 +0000 |
| commit | 8faa774026ade012084caae58ee07d334f37b9e4 (patch) | |
| tree | f7794737727de8785b0689a12a5ce1d7a1b60ff4 /qpid/cpp/src/tests/test_tools.h | |
| parent | 3130e493f12700b018cd0a3286802f1c0d3a602d (diff) | |
| download | qpid-python-8faa774026ade012084caae58ee07d334f37b9e4.tar.gz | |
Fix compile errors/warnings with gcc 4.3
- added missing #includes that were implicitly included via old headers.
- add namespace-qualifiers to fix "changes meaning of name" warnings.
- ./qpid/ptr_map.h:51: fixed "qualified return value" warning.
- use const char* for "conversion from string constant to ‘char*’" warnings
Applied patch from https://issues.apache.org/jira/browse/QPID-869
remove depenency on boost/date_time, causes warnings with gcc 4.3.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@640806 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/test_tools.h')
| -rw-r--r-- | qpid/cpp/src/tests/test_tools.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/qpid/cpp/src/tests/test_tools.h b/qpid/cpp/src/tests/test_tools.h index 2de4b6fbc1..c5451643be 100644 --- a/qpid/cpp/src/tests/test_tools.h +++ b/qpid/cpp/src/tests/test_tools.h @@ -19,6 +19,8 @@ * */ +#include <limits.h> // Include before boost/test headers. + #include <boost/test/test_tools.hpp> #include <boost/assign/list_of.hpp> #include <boost/regex.hpp> |
