eoOpSelector has a method called getOp that HAD to return a non-constant reference to an operator; in fact it returned a CONST reference. Now, I've changed it
This commit is contained in:
parent
a92af188c8
commit
bf3e77d97b
1 changed files with 1 additions and 1 deletions
|
|
@ -55,7 +55,7 @@ public:
|
||||||
modified or whatever
|
modified or whatever
|
||||||
@param _id a previously assigned ID
|
@param _id a previously assigned ID
|
||||||
@throw runtime_exception if the ID does not exist*/
|
@throw runtime_exception if the ID does not exist*/
|
||||||
virtual const eoOp<EOT>& getOp( ID _id ) = 0;
|
virtual eoOp<EOT>& getOp( ID _id ) = 0;
|
||||||
|
|
||||||
/** Remove an operator from the operator set
|
/** Remove an operator from the operator set
|
||||||
@param _id a previously assigned ID
|
@param _id a previously assigned ID
|
||||||
|
|
|
||||||
Reference in a new issue