.benchmarks

git-svn-id: svn://ultimatepp.org/upp/trunk@13427 f0d560ea-af0d-0410-9eb7-867de7ffcac7
This commit is contained in:
cxl 2019-06-23 07:45:47 +00:00
parent 4a9447030f
commit e201d6703d
2 changed files with 2 additions and 3 deletions

View file

@ -5,7 +5,8 @@ void SomeRocks(Painter& sw)
static Painting rocks;
ONCELOCK {
rocks.Serialize(FileIn(GetDataFile("SomeRocks.painting")));
FileIn in(GetDataFile("SomeRocks.painting"));
rocks.Serialize(in);
}
sw.EvenOdd();

View file

@ -1,7 +1,5 @@
description "C++ standard library vs. U++ Core benchmark\377";
optimize_speed;
uses
Core;