Differences From Artifact [f6988d5f2e]:
- File src/OFString_UTF8.h — part of check-in [0dafdc4730] at 2012-03-17 15:48:08 on branch trunk — One malloc less for creating an immutable UTF-8 string. (user: js, size: 1148) [annotate] [blame] [check-ins using] [more...]
To Artifact [716218f422]:
- File
src/OFString_UTF8.h
— part of check-in
[03a7cd6427]
at
2012-03-23 12:41:02
on branch trunk
— Remove hack not necessary anymore.
It became obsolete with the last buildsys update. (user: js, size: 1149) [annotate] [blame] [check-ins using] [more...]
︙ | ︙ | |||
15 16 17 18 19 20 21 | */ #import "OFString.h" @interface OFString_UTF8: OFString { @public | | | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | */ #import "OFString.h" @interface OFString_UTF8: OFString { @public /** * A pointer to the actual data. * * Since constant strings don't have s_store, they have to malloc it on * the first access. Strings created at runtime just set the pointer to * &s_store. */ struct of_string_utf8_ivars { |
︙ | ︙ |