| Index: sql/statement.h
|
| diff --git a/sql/statement.h b/sql/statement.h
|
| index 83a5a2dfa83aeabc30460886bcd5d146a2067fe2..3bc99ed2924b1756e7359e4be29f0702b1dac962 100644
|
| --- a/sql/statement.h
|
| +++ b/sql/statement.h
|
| @@ -139,7 +139,7 @@ class SQL_EXPORT Statement {
|
| // vector. Danger! ColumnBlob may return NULL if there is no data!
|
| int ColumnByteLength(int col) const;
|
| const void* ColumnBlob(int col) const;
|
| - bool ColumnBlobAsString(int col, std::string* blob);
|
| + bool ColumnBlobAsString(int col, std::string* blob) const;
|
| bool ColumnBlobAsString16(int col, base::string16* val) const;
|
| bool ColumnBlobAsVector(int col, std::vector<char>* val) const;
|
| bool ColumnBlobAsVector(int col, std::vector<unsigned char>* val) const;
|
|
|