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

Unified Diff: third_party/WebKit/Source/wtf/Utility.h

Issue 1436153002: Apply clang-format with Chromium-style without column limit. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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 | « third_party/WebKit/Source/wtf/Uint8ClampedArray.h ('k') | third_party/WebKit/Source/wtf/Vector.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/Utility.h
diff --git a/third_party/WebKit/Source/wtf/Utility.h b/third_party/WebKit/Source/wtf/Utility.h
index c20b9f11832d377ca1258b0747d8dc392fbd6f7a..0ab8a6049a1a1d97fe06d44dae667bc6457850da 100644
--- a/third_party/WebKit/Source/wtf/Utility.h
+++ b/third_party/WebKit/Source/wtf/Utility.h
@@ -13,11 +13,15 @@ namespace WTF {
// std::forward from <utility>.
template <typename T>
-T&& forward(typename RemoveReference<T>::Type& t) { return static_cast<T&&>(t); }
+T&& forward(typename RemoveReference<T>::Type& t) {
+ return static_cast<T&&>(t);
+}
template <typename T>
-T&& forward(typename RemoveReference<T>::Type&& t) { return static_cast<T&&>(t); }
+T&& forward(typename RemoveReference<T>::Type&& t) {
+ return static_cast<T&&>(t);
+}
-} // namespace WTF
+} // namespace WTF
-#endif // Utility_h
+#endif // Utility_h
« no previous file with comments | « third_party/WebKit/Source/wtf/Uint8ClampedArray.h ('k') | third_party/WebKit/Source/wtf/Vector.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698