Skip to content

Commit c06ee0c

Browse files
committed
clang format
1 parent 231b62b commit c06ee0c

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

include/builders/external_memory_builder_partitioned_phf.hpp

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -282,8 +282,9 @@ struct external_memory_builder_partitioned_phf {
282282
struct meta_partition {
283283
meta_partition(std::string const& dir_name, uint64_t id)
284284
: m_filename(dir_name + "/pthash.temp." + std::to_string(id)), m_size(0) {
285-
// Truncate the file if it exists from a previous run
286-
std::ofstream truncate(m_filename.c_str(), std::ofstream::binary | std::ofstream::trunc);
285+
/* Truncate the file if it exists from a previous run */
286+
std::ofstream truncate(m_filename.c_str(),
287+
std::ofstream::binary | std::ofstream::trunc);
287288
truncate.close();
288289
}
289290

0 commit comments

Comments
 (0)