Skip to content

Commit

Permalink
clang-format and pre-commit check fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
RaghulPS32 committed Jan 25, 2024
1 parent 8931711 commit 63445ab
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions include/MLModelRunner/MLModelRunner.h
Original file line number Diff line number Diff line change
Expand Up @@ -94,12 +94,12 @@ class MLModelRunner {

template <typename T, typename... Types>
void passMetaInfo(std::pair<std::string, T> &var1,
std::pair<std::string, Types> &...var2) {
std::pair<std::string, Types> &...var2) {

of.open("observation.txt",std::ios::app);
of << var1.first << ": " << var1.second << "\n";
of.close();
passMetaInfo(var2...);
of.open("observation.txt",std::ios::app);
of << var1.first << ": " << var1.second << "\n";
of.close();
passMetaInfo(var2...);

}

Expand Down

0 comments on commit 63445ab

Please sign in to comment.