summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-01-14 15:01:44 +0100
committerStephan Bergmann <sbergman@redhat.com>2016-01-14 15:01:44 +0100
commit03631195ff7b73c25e5a3f5554e2eb293ffc31c5 (patch)
tree67606a1b537bb0009e47858bdb899f464690cbce
parentdb3e4e560ff979b3b06b45bcb087a5f90597595b (diff)
-Werror=misleading-indentation (GCC 6)
Change-Id: I83beda380dc35544b9bc6fd5b1c7359546f8c8c5
-rw-r--r--include/oox/helper/refvector.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/oox/helper/refvector.hxx b/include/oox/helper/refvector.hxx
index eff649b718b0..e7aca3953f67 100644
--- a/include/oox/helper/refvector.hxx
+++ b/include/oox/helper/refvector.hxx
@@ -134,7 +134,10 @@ private:
FunctorType maFunctor;
sal_Int32 mnIndex;
explicit ForEachFunctorWithIndex( const FunctorType& rFunctor ) : maFunctor( rFunctor ), mnIndex( 0 ) {}
- void operator()( const value_type& rxValue ) { if( rxValue.get() ) maFunctor( mnIndex, *rxValue ); ++mnIndex; }
+ void operator()( const value_type& rxValue ) {
+ if( rxValue.get() ) maFunctor( mnIndex, *rxValue );
+ ++mnIndex;
+ }
};
template< typename FunctorType >