summaryrefslogtreecommitdiffstats
path: root/core/string_builder.h
Commit message (Collapse)AuthorAgeFilesLines
* Fix several in-class initialization clang warningMarcelo Fernandez2018-03-221-1/+5
|
* Add missing copyright headers and fix formattingRémi Verschelde2018-01-051-0/+1
| | | | | | Using `misc/scripts/fix_headers.py` on all Godot files. Some missing header guards were added, and the header inclusion order was fixed in the Bullet module.
* Update copyright statements to 2018Rémi Verschelde2018-01-011-2/+2
| | | | Happy new year to the wonderful Godot community!
* added StringBuilder classKarroffel2017-09-011-0/+79
When doing large string concatenations the default push_back on the String class can slow down things quite a bit. This is because it has to constantly reallocate the memory and copy the contents. This StringBuilder class delays the concatenation until the size of the resulting string is known.