summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/sys/AtomicCount.h
diff options
context:
space:
mode:
authorAlan Conway <aconway@apache.org>2008-03-18 22:07:58 +0000
committerAlan Conway <aconway@apache.org>2008-03-18 22:07:58 +0000
commitd40280cec3ff590facd2f46b7f5d5054fd13db89 (patch)
tree6e323f16697a94faf2fc37039f5499ec8ce4aea2 /cpp/src/qpid/sys/AtomicCount.h
parent67dcb5db50cda061744821326e584b7c4493f633 (diff)
downloadqpid-python-d40280cec3ff590facd2f46b7f5d5054fd13db89.tar.gz
Qualify names to fix gcc 4.3 compile errors.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk/qpid@638604 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/sys/AtomicCount.h')
-rw-r--r--cpp/src/qpid/sys/AtomicCount.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/cpp/src/qpid/sys/AtomicCount.h b/cpp/src/qpid/sys/AtomicCount.h
index b542e37039..54081092c8 100644
--- a/cpp/src/qpid/sys/AtomicCount.h
+++ b/cpp/src/qpid/sys/AtomicCount.h
@@ -30,8 +30,8 @@ namespace sys {
*/
class AtomicCount {
public:
- typedef ScopedDecrement<AtomicCount> ScopedDecrement;
- typedef ScopedIncrement<AtomicCount> ScopedIncrement;
+ typedef ::qpid::sys::ScopedDecrement<AtomicCount> ScopedDecrement;
+ typedef ::qpid::sys::ScopedIncrement<AtomicCount> ScopedIncrement;
AtomicCount(long value = 0) : count(value) {}