diff options
author | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-13 18:26:31 +0000 |
---|---|---|
committer | dcheng@chromium.org <dcheng@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-06-13 18:26:31 +0000 |
commit | 36ee120a777fad8b7031d64196234d3561d1ffe8 (patch) | |
tree | 4e738bbfde7cb977676caa84442147b9ec827f40 /sql | |
parent | 32343a0b1ebd9111fa3641c916caf21880a09688 (diff) | |
download | chromium_src-36ee120a777fad8b7031d64196234d3561d1ffe8.zip chromium_src-36ee120a777fad8b7031d64196234d3561d1ffe8.tar.gz chromium_src-36ee120a777fad8b7031d64196234d3561d1ffe8.tar.bz2 |
Rewrite scoped_ptr<T>(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
Diffstat (limited to 'sql')
-rw-r--r-- | sql/connection.cc | 4 |
1 files changed, 1 insertions, 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(); |