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

Side by Side Diff: base/move.h

Issue 1082263002: Move an include guard to guard all code in base/move.h (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 8 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
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/compiler_specific.h"
6
7 #ifndef BASE_MOVE_H_ 5 #ifndef BASE_MOVE_H_
8 #define BASE_MOVE_H_ 6 #define BASE_MOVE_H_
9 7
8 #include "base/compiler_specific.h"
9
10 // Macro with the boilerplate that makes a type move-only in C++03. 10 // Macro with the boilerplate that makes a type move-only in C++03.
11 // 11 //
12 // USAGE 12 // USAGE
13 // 13 //
14 // This macro should be used instead of DISALLOW_COPY_AND_ASSIGN to create 14 // This macro should be used instead of DISALLOW_COPY_AND_ASSIGN to create
15 // a "move-only" type. Unlike DISALLOW_COPY_AND_ASSIGN, this macro should be 15 // a "move-only" type. Unlike DISALLOW_COPY_AND_ASSIGN, this macro should be
16 // the first line in a class declaration. 16 // the first line in a class declaration.
17 // 17 //
18 // A class using this macro must call .Pass() (or somehow be an r-value already) 18 // A class using this macro must call .Pass() (or somehow be an r-value already)
19 // before it can be: 19 // before it can be:
(...skipping 200 matching lines...) Expand 10 before | Expand all | Expand 10 after
220 #define MOVE_ONLY_TYPE_WITH_MOVE_CONSTRUCTOR_FOR_CPP_03(type) \ 220 #define MOVE_ONLY_TYPE_WITH_MOVE_CONSTRUCTOR_FOR_CPP_03(type) \
221 private: \ 221 private: \
222 type(type&); \ 222 type(type&); \
223 void operator=(type&); \ 223 void operator=(type&); \
224 public: \ 224 public: \
225 type&& Pass() WARN_UNUSED_RESULT { return static_cast<type&&>(*this); } \ 225 type&& Pass() WARN_UNUSED_RESULT { return static_cast<type&&>(*this); } \
226 typedef void MoveOnlyTypeForCPP03; \ 226 typedef void MoveOnlyTypeForCPP03; \
227 private: 227 private:
228 228
229 #endif // BASE_MOVE_H_ 229 #endif // BASE_MOVE_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698