Skip to content

Commit

Permalink
Missing semicolon at the end of lines in h3mm_app file fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
cyang-kth committed Jul 8, 2021
1 parent 9eaa303 commit 12042a8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/mm/h3mm/h3mm_app.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,14 +90,14 @@ class H3MMAppConfig
};

void print() const {
SPDLOG_INFO("---- Print configuration ----")
SPDLOG_INFO("---- Print configuration ----");
gps_config.print();
result_config.print();
h3mm_config.print();
SPDLOG_INFO("Log level {}",UTIL::LOG_LEVESLS[log_level])
SPDLOG_INFO("Step {}",step)
SPDLOG_INFO("Use omp {}",(use_omp ? "true" : "false"))
SPDLOG_INFO("---- Print configuration done ----")
SPDLOG_INFO("Log level {}",UTIL::LOG_LEVESLS[log_level]);
SPDLOG_INFO("Step {}",step);
SPDLOG_INFO("Use omp {}",(use_omp ? "true" : "false"));
SPDLOG_INFO("---- Print configuration done ----");
};

bool validate() const {
Expand Down

0 comments on commit 12042a8

Please sign in to comment.