Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(51)

Unified Diff: runtime/vm/snapshot_test.cc

Issue 23072026: fix cpp11 compile errors (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/simulator_mips.cc ('k') | runtime/vm/stack_frame.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot_test.cc
===================================================================
--- runtime/vm/snapshot_test.cc (revision 26375)
+++ runtime/vm/snapshot_test.cc (working copy)
@@ -950,7 +950,7 @@
TestCase::LoadTestScript(kScriptChars, NULL);
EXPECT_VALID(Api::CheckIsolateState(isolate));
timer1.Stop();
- OS::PrintErr("Without Snapshot: %"Pd64"us\n", timer1.TotalElapsedTime());
+ OS::PrintErr("Without Snapshot: %" Pd64 "us\n", timer1.TotalElapsedTime());
// Write snapshot with object content.
FullSnapshotWriter writer(&buffer, &malloc_allocator);
@@ -965,7 +965,7 @@
{
Dart_EnterScope(); // Start a Dart API scope for invoking API functions.
timer2.Stop();
- OS::PrintErr("From Snapshot: %"Pd64"us\n", timer2.TotalElapsedTime());
+ OS::PrintErr("From Snapshot: %" Pd64 "us\n", timer2.TotalElapsedTime());
// Invoke a function which returns an object.
Dart_Handle cls =
@@ -1004,7 +1004,7 @@
Dart_Handle lib = TestCase::LoadTestScript(kScriptChars, NULL);
EXPECT_VALID(Api::CheckIsolateState(isolate));
timer1.Stop();
- OS::PrintErr("Without Snapshot: %"Pd64"us\n", timer1.TotalElapsedTime());
+ OS::PrintErr("Without Snapshot: %" Pd64 "us\n", timer1.TotalElapsedTime());
// Write snapshot with object content.
FullSnapshotWriter writer(&buffer, &malloc_allocator);
@@ -1024,7 +1024,7 @@
{
Dart_EnterScope(); // Start a Dart API scope for invoking API functions.
timer2.Stop();
- OS::PrintErr("From Snapshot: %"Pd64"us\n", timer2.TotalElapsedTime());
+ OS::PrintErr("From Snapshot: %" Pd64 "us\n", timer2.TotalElapsedTime());
// Invoke a function which returns an object.
Dart_Handle cls = Dart_GetClass(TestCase::lib(),
« no previous file with comments | « runtime/vm/simulator_mips.cc ('k') | runtime/vm/stack_frame.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698