fix compatibility with older gcc versions
This commit is contained in:
parent
f4ee09779b
commit
72d2f0e481
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ public:
|
||||||
void setDefaultValue() { m_value = m_defaultval; }
|
void setDefaultValue() { m_value = m_defaultval; }
|
||||||
/// sets resource from string, specialized, must be implemented
|
/// sets resource from string, specialized, must be implemented
|
||||||
void setFromString(const char *strval);
|
void setFromString(const char *strval);
|
||||||
Resource<T>& operator = (const T& newvalue) { m_value = newvalue; return *this;}
|
Accessor<T> &operator =(const T& newvalue) { m_value = newvalue; return *this;}
|
||||||
/// specialized, must be implemented
|
/// specialized, must be implemented
|
||||||
/// @return string value of resource
|
/// @return string value of resource
|
||||||
std::string getString() const;
|
std::string getString() const;
|
||||||
|
|
Loading…
Reference in a new issue