Skip to content
Snippets Groups Projects
Commit fc4686ef authored by Jan Trávníček's avatar Jan Trávníček Committed by Jan Travnicek
Browse files

address some cppcheck reports

parent c8aa8e87
No related branches found
No related tags found
1 merge request!87Merge jt
...@@ -46,6 +46,7 @@ public: ...@@ -46,6 +46,7 @@ public:
AllocFix ( ) { AllocFix ( ) {
// just to make sure the allocator constructor exists // just to make sure the allocator constructor exists
static Alloc alloc; static Alloc alloc;
(void) alloc; // make unused variable warning go away
} }
}; };
   
......
...@@ -289,8 +289,8 @@ public: ...@@ -289,8 +289,8 @@ public:
*/ */
template < class K > template < class K >
auto equal_range ( K && key ) const & { auto equal_range ( K && key ) const & {
auto range = std::map < T, R, Cmp, Alloc >::equal_range ( std::forward < K > ( key ) ); auto res = std::map < T, R, Cmp, Alloc >::equal_range ( std::forward < K > ( key ) );
return ext::iterator_range < decltype ( range.first ) > ( range.first, range.second ); return ext::iterator_range < decltype ( res.first ) > ( res.first, res.second );
} }
   
/** /**
...@@ -305,8 +305,8 @@ public: ...@@ -305,8 +305,8 @@ public:
*/ */
template < class K > template < class K >
auto equal_range ( K && key ) & { auto equal_range ( K && key ) & {
auto range = std::map < T, R, Cmp, Alloc >::equal_range ( std::forward < K > ( key ) ); auto res = std::map < T, R, Cmp, Alloc >::equal_range ( std::forward < K > ( key ) );
return ext::iterator_range < decltype ( range.first ) > ( range.first, range.second ); return ext::iterator_range < decltype ( res.first ) > ( res.first, res.second );
} }
   
/** /**
...@@ -321,8 +321,8 @@ public: ...@@ -321,8 +321,8 @@ public:
*/ */
template < class K > template < class K >
auto equal_range ( K && key ) && { auto equal_range ( K && key ) && {
auto range = std::map < T, R, Cmp, Alloc >::equal_range ( std::forward < K > ( key ) ); auto res = std::map < T, R, Cmp, Alloc >::equal_range ( std::forward < K > ( key ) );
return ext::make_iterator_range ( make_map_move_iterator < T, R > ( range.first ), make_map_move_iterator < T, R > ( range.second ) ); return ext::make_iterator_range ( make_map_move_iterator < T, R > ( res.first ), make_map_move_iterator < T, R > ( res.second ) );
} }
}; };
   
......
...@@ -411,8 +411,8 @@ inline bool not_isspace ( int ch ) { ...@@ -411,8 +411,8 @@ inline bool not_isspace ( int ch ) {
* \return string without spaces at front of it * \return string without spaces at front of it
*/ */
inline void ltrim ( std::string & s ) { inline void ltrim ( std::string & s ) {
auto end = std::find_if ( s.begin ( ), s.end ( ), not_isspace ); auto endPos = std::find_if ( s.begin ( ), s.end ( ), not_isspace );
s.erase ( s.begin ( ), end ); s.erase ( s.begin ( ), endPos );
} }
   
/** /**
...@@ -424,8 +424,8 @@ inline void ltrim ( std::string & s ) { ...@@ -424,8 +424,8 @@ inline void ltrim ( std::string & s ) {
* \return string without spaces at back of it * \return string without spaces at back of it
*/ */
inline void rtrim ( std::string & s ) { inline void rtrim ( std::string & s ) {
auto begin = std::find_if ( s.rbegin ( ), s.rend ( ), not_isspace ).base ( ); auto beginPos = std::find_if ( s.rbegin ( ), s.rend ( ), not_isspace ).base ( );
s.erase ( begin, s.end ( ) ); s.erase ( beginPos, s.end ( ) );
} }
   
/** /**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment