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

Unified Diff: Source/wtf/OwnPtr.h

Issue 20300002: Fix trailing whitespace in .cpp, .h, and .idl files (ex. Source/core) (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 5 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 | « Source/wtf/OwnArrayPtr.h ('k') | Source/wtf/OwnPtrCommon.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/OwnPtr.h
diff --git a/Source/wtf/OwnPtr.h b/Source/wtf/OwnPtr.h
index 98daa407dfb7fa7314ef5ef980d7f9ad6a7c889d..73ede43d15059598f8a06430c86679f31b7416fe 100644
--- a/Source/wtf/OwnPtr.h
+++ b/Source/wtf/OwnPtr.h
@@ -191,22 +191,22 @@ namespace WTF {
template<typename T, typename U> inline bool operator==(const OwnPtr<T>& a, U* b)
{
- return a.get() == b;
+ return a.get() == b;
}
- template<typename T, typename U> inline bool operator==(T* a, const OwnPtr<U>& b)
+ template<typename T, typename U> inline bool operator==(T* a, const OwnPtr<U>& b)
{
- return a == b.get();
+ return a == b.get();
}
template<typename T, typename U> inline bool operator!=(const OwnPtr<T>& a, U* b)
{
- return a.get() != b;
+ return a.get() != b;
}
template<typename T, typename U> inline bool operator!=(T* a, const OwnPtr<U>& b)
{
- return a != b.get();
+ return a != b.get();
}
template<typename T> inline typename OwnPtr<T>::PtrType getPtr(const OwnPtr<T>& p)
« no previous file with comments | « Source/wtf/OwnArrayPtr.h ('k') | Source/wtf/OwnPtrCommon.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698