Skip to content

Commit 2e554f5

Browse files
committed
nit: trying to please clang-format
Signed-off-by: Øyvind Harboe <[email protected]>
1 parent 9ae16aa commit 2e554f5

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

test/orfs/ram_8x7/ram_8x7_sim.cpp

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77

88
#include "Vram_8x7.h"
99

10+
namespace {
1011
class Ram_8x7TestHarness
1112
{
1213
public:
@@ -22,7 +23,7 @@ class Ram_8x7TestHarness
2223
trace->open(vcd_file.c_str());
2324
}
2425

25-
~Ram_8x7TestHarness() { trace->close(); }
26+
~Ram_8x7TestHarness();
2627

2728
// Simulate one clock cycle
2829
void step()
@@ -46,6 +47,11 @@ class Ram_8x7TestHarness
4647
// Now we're ready to pick up poked inputs on rising edge
4748
}
4849
};
50+
Ram_8x7TestHarness::~Ram_8x7TestHarness()
51+
{
52+
trace->close();
53+
}
54+
} // namespace
4955

5056
TEST(Ram_8x7Test, SimpleTest)
5157
{

0 commit comments

Comments
 (0)