Added "const" to cast operators

This commit is contained in:
Benoit Blanchon
2014-09-27 15:25:00 +02:00
parent a9a51ec1e2
commit a7ff04db0e
2 changed files with 8 additions and 8 deletions

View File

@ -18,10 +18,10 @@ public:
void operator=(double);
void operator=(int);
operator bool();
operator const char*();
operator double();
operator int();
operator bool() const;
operator const char*() const;
operator double() const;
operator int() const;
private:
//JsonBuffer& _buffer;