diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2011-05-09 19:55:29 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2011-05-09 19:55:29 +0000 |
| commit | 36228697da7e1288b2ab808346710fa4228d9b06 (patch) | |
| tree | eb19de2873be4694aa971611cab632b6a13265fe /qpid/cpp/include/qmf | |
| parent | c54fd6d8867b93406e53a446218f77e0852c694c (diff) | |
| download | qpid-python-36228697da7e1288b2ab808346710fa4228d9b06.tar.gz | |
QPID-3004: Get Clang to compile qpid c++
- Change class/struct declarations to be consistent with the definition to avoid
warnings
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1101178 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/include/qmf')
| -rw-r--r-- | qpid/cpp/include/qmf/Query.h | 2 | ||||
| -rw-r--r-- | qpid/cpp/include/qmf/Subscription.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/include/qmf/Query.h b/qpid/cpp/include/qmf/Query.h index fec4660bd7..1867b59d81 100644 --- a/qpid/cpp/include/qmf/Query.h +++ b/qpid/cpp/include/qmf/Query.h @@ -65,7 +65,7 @@ namespace qmf { #ifndef SWIG private: friend class qmf::PrivateImplRef<Query>; - friend class QueryImplAccess; + friend struct QueryImplAccess; #endif }; diff --git a/qpid/cpp/include/qmf/Subscription.h b/qpid/cpp/include/qmf/Subscription.h index 4e60eb984e..0a01b7c526 100644 --- a/qpid/cpp/include/qmf/Subscription.h +++ b/qpid/cpp/include/qmf/Subscription.h @@ -73,7 +73,7 @@ namespace qmf { #ifndef SWIG private: friend class qmf::PrivateImplRef<Subscription>; - friend class SubscriptionImplAccess; + friend struct SubscriptionImplAccess; #endif }; |
