Implements parsing function declarations
This commit is contained in:
@@ -19,6 +19,13 @@ public:
|
||||
const int GetHash(){
|
||||
return _hash;
|
||||
}
|
||||
|
||||
bool operator==(const HashedString& b) const{
|
||||
return _hash == b._hash;
|
||||
}
|
||||
bool operator!=(const HashedString& b) const{
|
||||
return _hash != b._hash;
|
||||
}
|
||||
};
|
||||
|
||||
#endif //PORYGONLANG_HASHEDSTRING_HPP
|
||||
|
||||
Reference in New Issue
Block a user