diff options
author | Andrew Stitcher <astitcher@apache.org> | 2010-04-21 22:07:04 +0000 |
---|---|---|
committer | Andrew Stitcher <astitcher@apache.org> | 2010-04-21 22:07:04 +0000 |
commit | e20869eb4e1ed97f00c3f3e9843b14a00267d25b (patch) | |
tree | cfce5a61a9b46de37e8d486ab00ce7d22fed0737 /qpid/cpp/src/tests/exception_test.cpp | |
parent | 1dfffd6555da0b05d88b8e25e4d21951337c4faf (diff) | |
download | qpid-python-e20869eb4e1ed97f00c3f3e9843b14a00267d25b.tar.gz |
QPID-2527: Remove Thread::id member as its uses are better implemented by comparison
operators.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@936537 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/tests/exception_test.cpp')
-rw-r--r-- | qpid/cpp/src/tests/exception_test.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/cpp/src/tests/exception_test.cpp b/qpid/cpp/src/tests/exception_test.cpp index 4dac8ee965..3536ffddbe 100644 --- a/qpid/cpp/src/tests/exception_test.cpp +++ b/qpid/cpp/src/tests/exception_test.cpp @@ -74,7 +74,7 @@ struct Catcher : public Runnable { } bool join() { - if (thread.id()) { + if (thread) { thread.join(); thread=Thread(); } |