From 2f646c72ad4df737a61902cbbce00acad369f4df Mon Sep 17 00:00:00 2001 From: theraven Date: Wed, 16 Nov 2011 20:49:27 +0000 Subject: [PATCH] Added ChangeLog entry from last commit git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/base/trunk@34182 72102866-910b-0410-8b05-ffd578937521 --- ChangeLog | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/ChangeLog b/ChangeLog index aa55d37d9..5f7370d71 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2011-11-16 20:48 theraven + + * libs/base/trunk/Source/GSString.m: Store tiny strings (up to 8 + ASCII characters) inside the pointer. Strings of this length are fairly + common, and this makes them very cheap to store / copy / compare + (pointer comparisons test for equality). 8 characters seems to be enough + for quite a lot of common uses, such as path components and tokens. + There are possibly still some things constructing tiny strings and not + using these. + 2011-11-16 17:29 theraven * libs/base/trunk/Source/NSNumber.m: Implement the double boxing