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

Unified Diff: runtime/vm/snapshot_test.cc

Issue 10896054: Format pointer type declarations more consistently. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 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/parser.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/snapshot_test.cc
diff --git a/runtime/vm/snapshot_test.cc b/runtime/vm/snapshot_test.cc
index 01d60e7678875c87a342740c7a9e3a9efec25624..0d6ce842f5e954e80466e608f7700599761e4453 100644
--- a/runtime/vm/snapshot_test.cc
+++ b/runtime/vm/snapshot_test.cc
@@ -408,8 +408,8 @@ Dart_CObject* SerializeAndDeserializeBigint(const Bigint& bigint) {
Snapshot::kMessage, Isolate::Current());
Bigint& serialized_bigint = Bigint::Handle();
serialized_bigint ^= reader.ReadObject();
- const char *str1 = BigintOperations::ToHexCString(bigint, allocator);
- const char *str2 =
+ const char* str1 = BigintOperations::ToHexCString(bigint, allocator);
+ const char* str2 =
BigintOperations::ToHexCString(serialized_bigint, allocator);
EXPECT_STREQ(str1, str2);
free(const_cast<char*>(str1));
« no previous file with comments | « runtime/vm/parser.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698