Skip to content

Commit 1a5d4d1

Browse files
committed
Reformat: Wrap many_conditionals_benchmark.cc in namespace
1 parent 855c369 commit 1a5d4d1

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

compiler/back_end/cpp/testcode/many_conditionals_benchmark.cc

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,10 @@
1010
// Since this file is in compiler/back_end/cpp/testcode/, it will be built as a
1111
// cc_test. We can use GoogleTest macros.
1212

13+
namespace emboss {
14+
namespace test {
15+
namespace {
16+
1317
TEST(ComplexConditionals, PerformanceBenchmark) {
1418
std::vector<char> buffer(100, 0);
1519
auto view = emboss::test::MakeLargeConditionalsView(&buffer);
@@ -35,3 +39,7 @@ TEST(ComplexConditionals, PerformanceBenchmark) {
3539
EXPECT_TRUE(result);
3640
EXPECT_TRUE(view.Ok());
3741
}
42+
43+
} // namespace
44+
} // namespace test
45+
} // namespace emboss

0 commit comments

Comments
 (0)