Skip to content

Commit

Permalink
fix: actually catch issues at compiletime on C++17
Browse files Browse the repository at this point in the history
  • Loading branch information
c-dilks committed Aug 8, 2024
1 parent 1cb2ddc commit 88dd8fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ namespace iguana::clas12 {

void EventBuilderFilter::Stop()
{
NEWLOG("test newlog {} {}", 7);
NEWLOG("test newlog {}", 7);
}

}
2 changes: 1 addition & 1 deletion src/iguana/services/Object.h
Original file line number Diff line number Diff line change
Expand Up @@ -65,5 +65,5 @@ namespace iguana {
#define NEWLOG(fmt_str, ...) \
PrintLog( \
fmt::format("[{}]", fmt::styled(m_name, fmt::emphasis::bold | fmt::fg(fmt::terminal_color::magenta))), \
fmt_str, \
FMT_STRING(fmt_str), \
__VA_ARGS__);

0 comments on commit 88dd8fd

Please sign in to comment.