You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
virtualboolgetString(INDEX start, int len, string** buf) const {returnfalse;}
138
+
virtualboolgetString(INDEX start, int len, std::string** buf) const {returnfalse;}
139
139
virtualboolgetString(INDEX start, int len, char** buf) const {returnfalse;}
140
140
virtualboolgetBinary(INDEX start, int len, int unitLength, unsignedchar* buf) const {returnfalse;}
141
141
virtualboolgetHash(INDEX start, int len, int buckets, int* buf) const {returnfalse;}
@@ -152,7 +152,7 @@ class EXPORT_DECL Constant {
152
152
virtualconstfloat* getFloatConst(INDEX start, int len, float* buf) const {throwRuntimeException("getFloatConst method not supported");}
153
153
virtualconstdouble* getDoubleConst(INDEX start, int len, double* buf) const {throwRuntimeException("getDoubleConst method not supported");}
154
154
virtualconstint* getSymbolConst(INDEX start, int len, int* buf, SymbolBase* symBase, bool insertIfNotThere) const {throwRuntimeException("getSymbolConst method not supported");}
155
-
virtual string** getStringConst(INDEX start, int len, string** buf) const {throwRuntimeException("getStringConst method not supported");}
155
+
virtualstd::string** getStringConst(INDEX start, int len, std::string** buf) const {throwRuntimeException("getStringConst method not supported");}
156
156
virtualchar** getStringConst(INDEX start, int len, char** buf) const {throwRuntimeException("getStringConst method not supported");}
157
157
virtualconstunsignedchar* getBinaryConst(INDEX start, int len, int unitLength, unsignedchar* buf) const {throwRuntimeException("getBinaryConst method not supported");}
0 commit comments