Chromium Code Reviews| Index: sql/statement.cc |
| diff --git a/sql/statement.cc b/sql/statement.cc |
| index d92be010fd4420cb2e7eef83e37bfa00dfc1dfa6..fe0accb7b88322c842462c61cf917002644c12ed 100644 |
| --- a/sql/statement.cc |
| +++ b/sql/statement.cc |
| @@ -210,7 +210,7 @@ double Statement::ColumnDouble(int col) const { |
| std::string Statement::ColumnString(int col) const { |
| if (!CheckValid()) |
| - return ""; |
| + return std::string(); |
| const char* str = reinterpret_cast<const char*>( |
| sqlite3_column_text(ref_->stmt(), col)); |