Skip to content

Commit

Permalink
remove const from map key in LCRTRelations
Browse files Browse the repository at this point in the history
 - needed for clang 12 and std=c++17
  • Loading branch information
gaede committed Nov 5, 2020
1 parent 079d196 commit 70fc94f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cpp/include/LCRTRelations.h
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ namespace lcrtrel{
// traits definitions
typedef std::type_index ext_index ;
typedef std::shared_ptr<void> ext_type ;
typedef std::map<const ext_index, ext_type> ext_map ;
typedef std::map<ext_index, ext_type> ext_map ;

public:
/** Provides access to an extension object - the type and ownership is defined
Expand Down

0 comments on commit 70fc94f

Please sign in to comment.