Skip to content
Snippets Groups Projects
Commit 8a50aa7c authored by Jan Trávníček's avatar Jan Trávníček
Browse files

add cv qualifier to parameter

parent a5686268
No related branches found
No related tags found
No related merge requests found
...@@ -11,7 +11,7 @@ ...@@ -11,7 +11,7 @@
   
namespace alphabet { namespace alphabet {
   
UniqueSymbol::UniqueSymbol(const Symbol& symbol, primitive::Integer& id) : symbol(symbol), id(id) { UniqueSymbol::UniqueSymbol(const Symbol& symbol, const primitive::Integer& id) : symbol(symbol), id(id) {
   
} }
   
......
...@@ -31,7 +31,7 @@ public: ...@@ -31,7 +31,7 @@ public:
* Creates new symbol with given name. * Creates new symbol with given name.
* @param symbol name of the symbol * @param symbol name of the symbol
*/ */
explicit UniqueSymbol(const Symbol& symbol, primitive::Integer& id); explicit UniqueSymbol(const Symbol& symbol, const primitive::Integer& id);
   
virtual SymbolBase* clone() const; virtual SymbolBase* clone() const;
   
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment