Skip to content

Commit 41e4779

Browse files
committed
Switch from std::format to fmt
why c++ standard no work
1 parent 2ff1357 commit 41e4779

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/NodePath.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ struct NodeID {
2020
// }
2121
std::string to_string() {
2222
//return (idName != "") ? idName : std::format("num{}",idIndex);
23-
return std::format("{}[{}]", idName, idIndex);
23+
return fmt::format("{}[{}]", idName, idIndex);
2424
}
2525

2626
bool operator< (const NodeID& other) const { // why tf is this here

0 commit comments

Comments
 (0)