summaryrefslogtreecommitdiff
path: root/cpp/src/qpid/framing/FieldTable.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2011-05-09 19:55:41 +0000
committerAndrew Stitcher <astitcher@apache.org>2011-05-09 19:55:41 +0000
commit6282dea8f6f38b0fa09b2e996280776bfb57c591 (patch)
tree95fc5193c080aea4f60b800edb3a9c0ae0fe54e5 /cpp/src/qpid/framing/FieldTable.cpp
parent4a4f8e01bcea816bccf0f427f6296c3a8d12e5cc (diff)
downloadqpid-python-6282dea8f6f38b0fa09b2e996280776bfb57c591.tar.gz
QPID-3004: Get Clang to compile qpid c++
- Removed unused code causing warnings git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1101179 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/framing/FieldTable.cpp')
-rw-r--r--cpp/src/qpid/framing/FieldTable.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpp/src/qpid/framing/FieldTable.cpp b/cpp/src/qpid/framing/FieldTable.cpp
index 023e4af819..21eaea0f4d 100644
--- a/cpp/src/qpid/framing/FieldTable.cpp
+++ b/cpp/src/qpid/framing/FieldTable.cpp
@@ -129,7 +129,7 @@ FieldTable::ValuePtr FieldTable::get(const std::string& name) const
namespace {
template <class T> T default_value() { return T(); }
template <> int default_value<int>() { return 0; }
- template <> uint64_t default_value<uint64_t>() { return 0; }
+ //template <> uint64_t default_value<uint64_t>() { return 0; }
}
template <class T>