Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(337)

Side by Side Diff: tools/clang/rewrite_scoped_ptr_ctor_null/tests/test-expected.cc

Issue 16606002: Tool to fix calls to scoped_ptr<T>(NULL) to use the default ctor instead (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #include "base/memory/scoped_ptr.h"
Nico 2013/06/11 19:58:13 Hm. One day, someone will move scoped_ptr to names
dcheng 2013/06/11 20:07:41 Originally, that's what I did--I just had a minima
6
7 void TestDeclarations() {
8 scoped_ptr<int> a, b(new int), c;
9 scoped_ptr_malloc<int> d;
10 }
11
12 void TestNew() {
13 scoped_ptr<int>* a = new scoped_ptr<int>, *b = new scoped_ptr<int>(new int),
14 *c = new scoped_ptr<int>;
15 }
16
17 class TestInitializers {
18 public:
19 TestInitializers() {}
20 TestInitializers(bool) {}
21 TestInitializers(double) : b(new int), c() {}
22
23 private:
24 scoped_ptr<int> a;
25 scoped_ptr<int> b;
26 scoped_ptr<int> c;
27 };
28
29 scoped_ptr<int> TestTemporaries(scoped_ptr<int> a, scoped_ptr<int> b) {
30 scoped_ptr<int> c =
31 TestTemporaries(scoped_ptr<int>(), scoped_ptr<int>(new int));
32 return scoped_ptr<int>();
33 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698