diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2012-03-15 19:40:08 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2012-03-15 19:40:08 +0000 |
| commit | 948454b7018b35096ae0454c1260dc69244d9946 (patch) | |
| tree | 99fd61f58d641f4f1e0f45326e78996bd5cdab38 /cpp/src/qpid/cluster/ClusterMap.cpp | |
| parent | c421c9f947ff9e75234e58fe3f67309cb41a411b (diff) | |
| download | qpid-python-948454b7018b35096ae0454c1260dc69244d9946.tar.gz | |
NO-JIRA: Remove some namespace polluting "using namespace boost" declarations
- Blanket "using namespace" declarations like these are BAD, they can change
the symbols imported into your namespace and you have no control over this.
- Needed to make QPID-3893 compile on windows
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1301168 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/cluster/ClusterMap.cpp')
| -rw-r--r-- | cpp/src/qpid/cluster/ClusterMap.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/cluster/ClusterMap.cpp b/cpp/src/qpid/cluster/ClusterMap.cpp index a8389095c9..12730d20ec 100644 --- a/cpp/src/qpid/cluster/ClusterMap.cpp +++ b/cpp/src/qpid/cluster/ClusterMap.cpp @@ -29,7 +29,8 @@ #include <ostream> using namespace std; -using namespace boost; +using boost::ref; +using boost::optional; namespace qpid { using namespace framing; |
