diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2011-10-18 23:05:58 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2011-10-18 23:10:56 +0200 |
commit | bf1f0183d5c6b4c94acdbee27276d5a386a657f4 (patch) | |
tree | 3d4d60a59f935ee11011ebea33ccb6d9fab5063c /autodoc/source | |
parent | 0eee1cf957d122ac0d805a9589a5db075a94e4a1 (diff) |
Some fixes for "clang version 3.1 (trunk 142234)" (with --enable-werror, on Linux x86_64).
Diffstat (limited to 'autodoc/source')
-rw-r--r-- | autodoc/source/inc/estack.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/autodoc/source/inc/estack.hxx b/autodoc/source/inc/estack.hxx index 1cb5855a1122..3eb5b838dbf3 100644 --- a/autodoc/source/inc/estack.hxx +++ b/autodoc/source/inc/estack.hxx @@ -63,12 +63,10 @@ class EStack : private std::list<ELEM> { base::operator=( i_rStack.Base() ); return *this; } bool operator==( - const EStack<ELEM> & - i_r2 ) const + const EStack<ELEM> & ) const { return std::operator==( Base(), this->i_rStack.Base() ); } bool operator<( - const EStack<ELEM> & - i_r2 ) const + const EStack<ELEM> & ) const { return std::operator<( Base(), this->i_rStack.Base() ); } // OPERATIONS void push( |