| Index: app/sql/connection.cc
|
| diff --git a/app/sql/connection.cc b/app/sql/connection.cc
|
| index d227468dc9c1e31b0990a072ccb1eed6c528dd98..84b4729669df56a93cb85f6ce53f79a66989a7a0 100644
|
| --- a/app/sql/connection.cc
|
| +++ b/app/sql/connection.cc
|
| @@ -21,6 +21,12 @@ bool StatementID::operator<(const StatementID& other) const {
|
| return strcmp(str_, other.str_) < 0;
|
| }
|
|
|
| +ErrorDelegate::ErrorDelegate() {
|
| +}
|
| +
|
| +ErrorDelegate::~ErrorDelegate() {
|
| +}
|
| +
|
| Connection::StatementRef::StatementRef()
|
| : connection_(NULL),
|
| stmt_(NULL) {
|
|
|