Add constexpr to GetValue on ConstString holder.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2020-04-16 11:16:55 +02:00
parent de702b5569
commit e850f728bc
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 4 additions and 8 deletions

View File

@ -25,12 +25,8 @@ namespace Arbutils {
delete this;
}
}
inline void AddReference(){
_references++;
}
inline const char* GetValue(){
return _value;
}
inline void AddReference() { _references++; }
inline constexpr const char* GetValue() const { return _value; }
};
}