diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-10-13 15:34:23 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-10-13 15:34:23 +0200 |
commit | d2f3756de7c4b7dbca90ff9403f2fa6bff37daf6 (patch) | |
tree | e1698a1a0ca3eef2660bd5943b27788639d54c3a /include/vcl/vclptr.hxx | |
parent | 01a93d348b84a72b0d6829c2c730263f29a305bc (diff) |
No std container requires operator >
Change-Id: Ic5befe71c9cb4ffa37b3298b269bcd7ef713b937
Diffstat (limited to 'include/vcl/vclptr.hxx')
-rw-r--r-- | include/vcl/vclptr.hxx | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/include/vcl/vclptr.hxx b/include/vcl/vclptr.hxx index ce2cd3518e1a..0eb16a9678bb 100644 --- a/include/vcl/vclptr.hxx +++ b/include/vcl/vclptr.hxx @@ -213,13 +213,6 @@ public: { return (m_rInnerRef < handle.m_rInnerRef); } - - /** Needed to place VclPtr's into STL collection. - */ - inline bool operator> (const VclPtr<reference_type> & handle) const - { - return (m_rInnerRef > handle.m_rInnerRef); - } }; // class VclPtr template<typename T1, typename T2> |