diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2013-03-08 21:48:39 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2013-03-08 21:48:39 +0000 |
| commit | 65f2508fe1933e65fbe700479a85d0d8db5b1196 (patch) | |
| tree | f7248af54a414db0a17c27b304ea2258ece26c7a /cpp/src/qpid/broker/SelectorValue.cpp | |
| parent | fe7bea37b1be75bac668a2af46d12054b265d03a (diff) | |
| download | qpid-python-65f2508fe1933e65fbe700479a85d0d8db5b1196.tar.gz | |
QPID-4633, QPID-4634: RHEL 5 related compilation problems
- Some things that the gcc 4.1/boost 1.33 environment in RHEL5
cares about.
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1454595 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qpid/broker/SelectorValue.cpp')
| -rw-r--r-- | cpp/src/qpid/broker/SelectorValue.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/cpp/src/qpid/broker/SelectorValue.cpp b/cpp/src/qpid/broker/SelectorValue.cpp index d35e4edd3e..83a9240dcb 100644 --- a/cpp/src/qpid/broker/SelectorValue.cpp +++ b/cpp/src/qpid/broker/SelectorValue.cpp @@ -43,6 +43,7 @@ ostream& operator<<(ostream& os, const Value& v) class NumericPairBase { public: + virtual ~NumericPairBase() {} virtual Value add() = 0; virtual Value sub() = 0; virtual Value mul() = 0; @@ -193,4 +194,4 @@ Value operator/(const Value& v1, const Value& v2) return Value(); } -}}
\ No newline at end of file +}} |
