fix compatibility with older gcc versions

This commit is contained in:
Mark Tiefenbruck 2007-12-30 14:58:41 -08:00
parent f4ee09779b
commit 72d2f0e481

View file

@ -183,7 +183,7 @@ public:
void setDefaultValue() { m_value = m_defaultval; }
/// sets resource from string, specialized, must be implemented
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
/// @return string value of resource
std::string getString() const;