From bf1f0183d5c6b4c94acdbee27276d5a386a657f4 Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Tue, 18 Oct 2011 23:05:58 +0200 Subject: Some fixes for "clang version 3.1 (trunk 142234)" (with --enable-werror, on Linux x86_64). --- autodoc/source/inc/estack.hxx | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'autodoc/source') 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 { base::operator=( i_rStack.Base() ); return *this; } bool operator==( - const EStack & - i_r2 ) const + const EStack & ) const { return std::operator==( Base(), this->i_rStack.Base() ); } bool operator<( - const EStack & - i_r2 ) const + const EStack & ) const { return std::operator<( Base(), this->i_rStack.Base() ); } // OPERATIONS void push( -- cgit