diff options
author | Elliott Hughes <enh@google.com> | 2012-04-20 18:48:18 -0700 |
---|---|---|
committer | Elliott Hughes <enh@google.com> | 2012-04-20 18:57:19 -0700 |
commit | 7b9d996e4cd7d154bb1a244d67139aff0c363cf2 (patch) | |
tree | a9dabe8f910b4b8bf29c2f4285d860995e25f58d /src/exception_test.cc | |
parent | 934100aea5a0f498c17e2c4a1fd0193af1557b42 (diff) | |
download | android_art-7b9d996e4cd7d154bb1a244d67139aff0c363cf2.tar.gz android_art-7b9d996e4cd7d154bb1a244d67139aff0c363cf2.tar.bz2 android_art-7b9d996e4cd7d154bb1a244d67139aff0c363cf2.zip |
Tidy up some C-isms.
Change-Id: I53b457cab9067369320457549071fc3e4c23c81b
Diffstat (limited to 'src/exception_test.cc')
-rw-r--r-- | src/exception_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/exception_test.cc b/src/exception_test.cc index c83557dae1..4d4ffd45f2 100644 --- a/src/exception_test.cc +++ b/src/exception_test.cc @@ -83,7 +83,7 @@ TEST_F(ExceptionTest, FindCatchHandler) { ASSERT_EQ(2u, code_item->tries_size_); ASSERT_NE(0u, code_item->insns_size_in_code_units_); - const struct DexFile::TryItem *t0, *t1; + const DexFile::TryItem *t0, *t1; t0 = dex_->GetTryItems(*code_item, 0); t1 = dex_->GetTryItems(*code_item, 1); EXPECT_LE(t0->start_addr_, t1->start_addr_); |