Skip to content

Commit

Permalink
fix warning
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreyMlashkin committed Dec 10, 2024
1 parent 8720389 commit 0ced39c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@ class CircuitWriterTest: public ::testing::Test {
void SetUp() override {

// open & stat file with circuit content
std::string test_circuit_file_path = std::string(TEST_DATA_DIR) + "circuit.crct";
std::string test_circuit_file_path(TEST_DATA_DIR);
test_circuit_file_path += "circuit.crct";
std::ifstream in(test_circuit_file_path, std::ios::binary | std::ios::in | std::ios::ate);
ASSERT_TRUE(in.is_open());
const auto fsize = in.tellg();
Expand Down

0 comments on commit 0ced39c

Please sign in to comment.