mirror of
https://github.com/OPM/ResInsight.git
synced 2025-02-25 18:55:39 -06:00
CMake : Improve handling of compiler flags (#8486)
#8478 Code cleanup to fix some warnings Several adjustments to improve the specification and usage of compile flags.
This commit is contained in:
@@ -164,7 +164,8 @@ std::vector<PdmFieldHandle*> PdmUiCommandSystemProxy::fieldsFromSelection( PdmFi
|
||||
if ( items.size() < 2 ) return {};
|
||||
|
||||
const auto fieldKeyword = editorField->keyword();
|
||||
const auto& fieldOwnerTypeId = typeid( *editorField->ownerObject() );
|
||||
auto ownerObject = editorField->ownerObject();
|
||||
const auto& fieldOwnerTypeId = typeid( *ownerObject );
|
||||
std::vector<PdmFieldHandle*> additionalFieldsToUpdate;
|
||||
|
||||
for ( auto& item : items )
|
||||
|
||||
Reference in New Issue
Block a user