Skip to content
Snippets Groups Projects
Commit 0cee79c3 authored by Sebastian Eibl's avatar Sebastian Eibl
Browse files

fixed initial clang7 warnings

parent c3724d5d
No related merge requests found
......@@ -686,7 +686,8 @@ namespace internal {
for( auto i = flags.begin(); i != flags.end(); ++i )
result.append( i->toString() );
return result;
boost::python::object objectResult = result;
return objectResult;
}
......@@ -699,7 +700,8 @@ namespace internal {
for( auto i = flags.begin(); i != flags.end(); ++i )
result[ i->toString() ] = ff.getFlag( *i );
return result;
boost::python::object objectResult = result;
return objectResult;
}
template<typename T>
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment