Skip to content

Commit

Permalink
fix compile error when RYML_DBG is not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
biojppm committed May 16, 2020
1 parent 32ec284 commit 9007c7a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/c4/yml/parse.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ bool Parser::_handle_unk()
}
else if(rem.begins_with(": ") && !has_all(SSCL))
{
_c4dbgpf("it's a map with an empty key");
_c4dbgp("it's a map with an empty key");
_push_level();
_start_map(start_as_child);
_store_scalar("");
Expand All @@ -331,7 +331,7 @@ bool Parser::_handle_unk()
}
else if(rem == ':' && !has_all(SSCL))
{
_c4dbgpf("it's a map with an empty key");
_c4dbgp("it's a map with an empty key");
_push_level();
_start_map(start_as_child);
_store_scalar("");
Expand Down

0 comments on commit 9007c7a

Please sign in to comment.