diff options
author | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-20 01:48:57 +0000 |
---|---|---|
committer | ajwong@chromium.org <ajwong@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-20 01:48:57 +0000 |
commit | 0827a444ff0040e844e3841f717761517e47f77f (patch) | |
tree | e919b16b7e04bc620b3f6f23d445fa17e1ea99d3 /base | |
parent | 2cec45a81670cfff09228cb60c137a79c2f14874 (diff) | |
download | chromium_src-0827a444ff0040e844e3841f717761517e47f77f.zip chromium_src-0827a444ff0040e844e3841f717761517e47f77f.tar.gz chromium_src-0827a444ff0040e844e3841f717761517e47f77f.tar.bz2 |
remove ; which breaks nacl_integration since they use -pedantic
BUG=none
TEST=nacl_integration goes green
TBR=darin
Review URL: https://chromiumcodereview.appspot.com/9195035
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118391 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/memory/scoped_ptr.h | 6 | ||||
-rw-r--r-- | base/memory/scoped_vector.h | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/base/memory/scoped_ptr.h b/base/memory/scoped_ptr.h index 6d054b4..7133a34 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: diff --git a/base/memory/scoped_vector.h b/base/memory/scoped_vector.h index a6d362e..06ddb1b 100644 --- a/base/memory/scoped_vector.h +++ b/base/memory/scoped_vector.h @@ -16,7 +16,7 @@ // destructor. template <class T> class ScopedVector { - MOVE_ONLY_TYPE_FOR_CPP_03(ScopedVector, RValue); + MOVE_ONLY_TYPE_FOR_CPP_03(ScopedVector, RValue) public: typedef typename std::vector<T*>::iterator iterator; |