From 36ee120a777fad8b7031d64196234d3561d1ffe8 Mon Sep 17 00:00:00 2001 From: "dcheng@chromium.org" Date: Thu, 13 Jun 2013 18:26:31 +0000 Subject: Rewrite scoped_ptr(NULL) to use the default ctor in sql/. This is the result of running the rewrite_scoped_ptr_ctor_null tool across all files built on Linux in the sql/ directory. BUG=173286 Review URL: https://chromiumcodereview.appspot.com/16866008 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@206127 0039d316-1c4b-4281-b951-d872f2087c98 --- sql/connection.cc | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/sql/connection.cc b/sql/connection.cc index 4eb060b..dd71563 100644 --- a/sql/connection.cc +++ b/sql/connection.cc @@ -122,9 +122,7 @@ Connection::Connection() transaction_nesting_(0), needs_rollback_(false), in_memory_(false), - poisoned_(false), - error_delegate_(NULL) { -} + poisoned_(false) {} Connection::~Connection() { Close(); -- cgit v1.1