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

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

Issue 2386843002: reflow comments in wtf (Closed)
Patch Set: Created 4 years, 2 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
Index: third_party/WebKit/Source/wtf/ListHashSet.h
diff --git a/third_party/WebKit/Source/wtf/ListHashSet.h b/third_party/WebKit/Source/wtf/ListHashSet.h
index c83025d1b82451e14fab0a254df9bcef074c10ef..c939359fe0d5e68b8ff1a3beb8e001dd22d0b083 100644
--- a/third_party/WebKit/Source/wtf/ListHashSet.h
+++ b/third_party/WebKit/Source/wtf/ListHashSet.h
@@ -1,5 +1,6 @@
/*
- * Copyright (C) 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All rights reserved.
+ * Copyright (C) 2005, 2006, 2007, 2008, 2011, 2012 Apple Inc. All rights
+ * reserved.
* Copyright (C) 2011, Benjamin Poulain <ikipou@gmail.com>
*
* This library is free software; you can redistribute it and/or
@@ -422,9 +423,8 @@ class ListHashSetNode : public ListHashSetNodeBase<ValueArg> {
}
static void finalize(void* pointer) {
- ASSERT(
- !IsTriviallyDestructible<ValueArg>::
- value); // No need to waste time calling finalize if it's not needed.
+ // No need to waste time calling finalize if it's not needed.
+ ASSERT(!IsTriviallyDestructible<ValueArg>::value);
ListHashSetNode* self = reinterpret_cast_ptr<ListHashSetNode*>(pointer);
// Check whether this node was already destructed before being unlinked

Powered by Google App Engine
This is Rietveld 408576698