summaryrefslogtreecommitdiff
path: root/cpp/examples/messaging/drain.cpp
diff options
context:
space:
mode:
authorStephen D. Huston <shuston@apache.org>2010-03-30 20:02:35 +0000
committerStephen D. Huston <shuston@apache.org>2010-03-30 20:02:35 +0000
commite87e7af34a950629ccdbfefda73789b23ea9c0ff (patch)
tree3171a63324f0fdb2ba2f96ed3e29dedf927be8a2 /cpp/examples/messaging/drain.cpp
parent03bc83e5b05972b95d4001363dbef140aa02bc4b (diff)
downloadqpid-python-e87e7af34a950629ccdbfefda73789b23ea9c0ff.tar.gz
Rename Duration::INFINITE to Duration::FOREVER; resolves QPID-2475.
Added missing QPID_CLIENT_EXTERN where needed in Duration class to build on Windows. git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@929240 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/examples/messaging/drain.cpp')
-rw-r--r--cpp/examples/messaging/drain.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/examples/messaging/drain.cpp b/cpp/examples/messaging/drain.cpp
index a2bb1c9d3a..a2fa0f1138 100644
--- a/cpp/examples/messaging/drain.cpp
+++ b/cpp/examples/messaging/drain.cpp
@@ -64,7 +64,7 @@ struct Options : public qpid::Options
Duration getTimeout()
{
- if (forever) return Duration::INFINITE;
+ if (forever) return Duration::FOREVER;
else return timeout*Duration::SECOND;
}