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

Unified Diff: Source/wtf/Vector.h

Issue 23766020: Trivial changes to default Vector sizing in the shadow area. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 3 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/core/dom/shadow/InsertionPoint.cpp ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/wtf/Vector.h
diff --git a/Source/wtf/Vector.h b/Source/wtf/Vector.h
index a49fb68864c175df5ee972dd0b8fdea8f42aedf8..f4119210e01745a5ea1e03d2046b23f8ccb783e1 100644
--- a/Source/wtf/Vector.h
+++ b/Source/wtf/Vector.h
@@ -928,7 +928,7 @@ static const size_t kInitialVectorSize = WTF_VECTOR_INITIAL_SIZE;
// vector's capacity is large enough for the append to succeed.
template<typename T, size_t inlineCapacity> template<typename U>
- inline void Vector<T, inlineCapacity>::uncheckedAppend(const U& val)
+ ALWAYS_INLINE void Vector<T, inlineCapacity>::uncheckedAppend(const U& val)
esprehn 2013/09/10 03:11:40 What does this do to the binary size?
{
ASSERT(size() < capacity());
const U* ptr = &val;
« no previous file with comments | « Source/core/dom/shadow/InsertionPoint.cpp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698