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

Unified Diff: base/memory/scoped_ptr.h

Issue 9195035: remove ; which breaks nacl_integration since they use -pedantic (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | base/memory/scoped_vector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/memory/scoped_ptr.h
diff --git a/base/memory/scoped_ptr.h b/base/memory/scoped_ptr.h
index 6d054b46b70f9b41bd549258e5d6325eb03ac3e9..7133a3407d0a185158e1923ab961bc50f5e462e4 100644
--- a/base/memory/scoped_ptr.h
+++ b/base/memory/scoped_ptr.h
@@ -94,7 +94,7 @@
// sizeof(scoped_ptr<C>) == sizeof(C*)
template <class C>
class scoped_ptr {
- MOVE_ONLY_TYPE_FOR_CPP_03(scoped_ptr, RValue);
+ MOVE_ONLY_TYPE_FOR_CPP_03(scoped_ptr, RValue)
public:
@@ -220,7 +220,7 @@ bool operator!=(C* p1, const scoped_ptr<C>& p2) {
// Size: sizeof(scoped_array<C>) == sizeof(C*)
template <class C>
class scoped_array {
- MOVE_ONLY_TYPE_FOR_CPP_03(scoped_array, RValue);
+ MOVE_ONLY_TYPE_FOR_CPP_03(scoped_array, RValue)
public:
@@ -335,7 +335,7 @@ class ScopedPtrMallocFree {
template<class C, class FreeProc = ScopedPtrMallocFree>
class scoped_ptr_malloc {
- MOVE_ONLY_TYPE_FOR_CPP_03(scoped_ptr_malloc, RValue);
+ MOVE_ONLY_TYPE_FOR_CPP_03(scoped_ptr_malloc, RValue)
public:
« no previous file with comments | « no previous file | base/memory/scoped_vector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698