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

Unified Diff: Source/wtf/OwnArrayPtr.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/NonCopyingSort.h ('k') | Source/wtf/OwnPtr.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/OwnArrayPtr.h
diff --git a/Source/wtf/OwnArrayPtr.h b/Source/wtf/OwnArrayPtr.h
index cd02972cc27f8b91428bfce39326ff8e4c87167c..c039fbe82f943a87fb7127e62ea2e9b0d3ce4e0b 100644
--- a/Source/wtf/OwnArrayPtr.h
+++ b/Source/wtf/OwnArrayPtr.h
@@ -127,22 +127,22 @@ template <typename T> inline void swap(OwnArrayPtr<T>& a, OwnArrayPtr<T>& b)
template<typename T, typename U> inline bool operator==(const OwnArrayPtr<T>& a, U* b)
{
- return a.get() == b;
+ return a.get() == b;
}
-template<typename T, typename U> inline bool operator==(T* a, const OwnArrayPtr<U>& b)
+template<typename T, typename U> inline bool operator==(T* a, const OwnArrayPtr<U>& b)
{
- return a == b.get();
+ return a == b.get();
}
template<typename T, typename U> inline bool operator!=(const OwnArrayPtr<T>& a, U* b)
{
- return a.get() != b;
+ return a.get() != b;
}
template<typename T, typename U> inline bool operator!=(T* a, const OwnArrayPtr<U>& b)
{
- return a != b.get();
+ return a != b.get();
}
template <typename T> inline T* getPtr(const OwnArrayPtr<T>& p)
« no previous file with comments | « Source/wtf/NonCopyingSort.h ('k') | Source/wtf/OwnPtr.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698