summaryrefslogtreecommitdiff
path: root/cpp/include/qmf
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2011-05-09 19:55:29 +0000
committerAndrew Stitcher <astitcher@apache.org>2011-05-09 19:55:29 +0000
commit4a4f8e01bcea816bccf0f427f6296c3a8d12e5cc (patch)
tree31dfa89e10dd3c3879984f791065c9d5f8d620f3 /cpp/include/qmf
parent837855971d295d497d1372bbc12a6c4b10dd0c3f (diff)
downloadqpid-python-4a4f8e01bcea816bccf0f427f6296c3a8d12e5cc.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/qpid@1101178 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/include/qmf')
-rw-r--r--cpp/include/qmf/Query.h2
-rw-r--r--cpp/include/qmf/Subscription.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/cpp/include/qmf/Query.h b/cpp/include/qmf/Query.h
index fec4660bd7..1867b59d81 100644
--- a/cpp/include/qmf/Query.h
+++ b/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/cpp/include/qmf/Subscription.h b/cpp/include/qmf/Subscription.h
index 4e60eb984e..0a01b7c526 100644
--- a/cpp/include/qmf/Subscription.h
+++ b/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
};