Skip to content

Commit

Permalink
Fixed BK buggy file
Browse files Browse the repository at this point in the history
  • Loading branch information
AsulconS committed Jun 15, 2020
1 parent ce8d571 commit c748f39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dstr/BTree.inl
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ inline void BTree<T, N>::clearFile()
m_file.open("data/data.bt", std::ios::out | std::ios::binary | std::ios::trunc);
m_file.close();

m_bkFile.open("data/data.bt", std::ios::out | std::ios::binary | std::ios::trunc);
m_bkFile.open("data/dataBK.bt", std::ios::out | std::ios::binary | std::ios::trunc);
m_bkFile.close();
}

Expand Down

0 comments on commit c748f39

Please sign in to comment.