Skip to content

Commit

Permalink
Fix fmt issue providing no suitable formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
Werni2A committed Dec 29, 2023
1 parent 55e1fc6 commit 40fa67f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Structures/StructPinIdxMapping.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void StructPinIdxMapping::read(FileFormatVersion /* aVersion */)
// @note The special case of value 127 that represents an empty group
pinGroup.push_back(bitMapPinGrpCfg & 0x7f);

mCtx.mLogger.trace("pinIgnore = {}", pinIgnore.back());
mCtx.mLogger.trace("pinIgnore = {}", (bool) GetBit(7, bitMapPinGrpCfg));
const std::string strPinGroup = (pinGroup.back() != 127U)
? std::to_string(pinGroup.back())
: std::string{};
Expand Down

0 comments on commit 40fa67f

Please sign in to comment.