Skip to content

Commit

Permalink
[bugfix] Drop const from setter method
Browse files Browse the repository at this point in the history
I am honestly puzzled why this has compiled before.
  • Loading branch information
dokempf committed Oct 2, 2024
1 parent c69fd3b commit d60df45
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scene/dynamic/DynSequence.h
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ class DynSequence {
* @param id New identifier for the dynamic sequence
* @see DynSequence::setId
*/
inline void setId(string const & id) const {this->id = id;}
inline void setId(string const & id) {this->id = id;}
/**
* @brief Get next identifier for the dynamic sequence
* @return Identifier of next dynamic sequence
Expand Down

0 comments on commit d60df45

Please sign in to comment.