diff options
author | Gordon Sim <gsim@apache.org> | 2011-02-21 09:37:03 +0000 |
---|---|---|
committer | Gordon Sim <gsim@apache.org> | 2011-02-21 09:37:03 +0000 |
commit | b4fd81c332afb07d79c747f80b5e04f620f36938 (patch) | |
tree | 01ee088040741e58aab757a6beb6ff60fd6c0bbc | |
parent | 7052038857cec4edab3c04f3daa33ff6dfbf29ac (diff) | |
download | qpid-python-b4fd81c332afb07d79c747f80b5e04f620f36938.tar.gz |
QPID-3002: Fix warning on windows regarding struct/class inconsistencies in declarations
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1072907 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r-- | qpid/cpp/src/qpid/broker/QueueObserver.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/qpid/broker/QueueObserver.h b/qpid/cpp/src/qpid/broker/QueueObserver.h index a711213dee..3ca01c051e 100644 --- a/qpid/cpp/src/qpid/broker/QueueObserver.h +++ b/qpid/cpp/src/qpid/broker/QueueObserver.h @@ -24,7 +24,7 @@ namespace qpid { namespace broker { -class QueuedMessage; +struct QueuedMessage; /** * Interface for notifying classes who want to act as 'observers' of a * queue of particular events. |