Update summary of stringbuilder benchmark

So it matches new results of commit
17fe42e0ad
This commit is contained in:
Martchus 2017-07-11 19:16:32 +02:00
parent 442f7a9b25
commit 37a8b78689
1 changed files with 3 additions and 3 deletions

View File

@ -46,6 +46,6 @@ diff (stringstream minus string builder): 00:00:10
factor (stringstream / string builder): 2.42857
```
So this basic tests show that string builder is up to 2 times faster when using full optimization
and still 1.4 times faster when using -O2 (default under Arch Linux). However, this templating
stuff completely relies on optimization (as expected). Results with clang++ where similar.
So this basic tests show that string builder is up to 3 times faster when using full optimization
and still 2 times faster when using -O2 (default under Arch Linux). However, without optimization it way
slower. Results with clang++ were similar.