diff options
author | Andrew Stitcher <astitcher@apache.org> | 2008-07-29 20:26:53 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2008-07-29 20:26:53 +0000 |
commit | bcd7f23da214d3d8c9128d9073a7deb81768bc5f (patch) | |
tree | 0d2572cf301eaa46917c2e8ae2930e14e5031248 | |
parent | 5c49bab054b72ee8ce73b376786f48bbaacc1a8b (diff) | |
download | qpid-python-bcd7f23da214d3d8c9128d9073a7deb81768bc5f.tar.gz |
QPID-1198 (Partial): Add #include <alloca.h> for all uses of ::alloca()
Patches from Manuel Teira.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@680829 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | cpp/src/tests/FieldTable.cpp | 1 | ||||
-rw-r--r-- | cpp/src/tests/MessageTest.cpp | 1 | ||||
-rw-r--r-- | cpp/src/tests/Uuid.cpp | 1 |
3 files changed, 3 insertions, 0 deletions
diff --git a/cpp/src/tests/FieldTable.cpp b/cpp/src/tests/FieldTable.cpp index ba506d4101..315801b428 100644 --- a/cpp/src/tests/FieldTable.cpp +++ b/cpp/src/tests/FieldTable.cpp @@ -21,6 +21,7 @@ #include <iostream> #include "qpid/framing/FieldTable.h" #include "qpid/framing/FieldValue.h" +#include <alloca.h> #include "unit_test.h" diff --git a/cpp/src/tests/MessageTest.cpp b/cpp/src/tests/MessageTest.cpp index 582844e6dc..b5c1648caf 100644 --- a/cpp/src/tests/MessageTest.cpp +++ b/cpp/src/tests/MessageTest.cpp @@ -28,6 +28,7 @@ #include "unit_test.h" #include <iostream> +#include <alloca.h> using namespace boost; using namespace qpid::broker; diff --git a/cpp/src/tests/Uuid.cpp b/cpp/src/tests/Uuid.cpp index ad26f796c0..ee86d75a26 100644 --- a/cpp/src/tests/Uuid.cpp +++ b/cpp/src/tests/Uuid.cpp @@ -22,6 +22,7 @@ #include "unit_test.h" #include <set> +#include <alloca.h> QPID_AUTO_TEST_SUITE(UuidTestSuite) |