We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2ff1357 commit 41e4779Copy full SHA for 41e4779
src/NodePath.hpp
@@ -20,7 +20,7 @@ struct NodeID {
20
// }
21
std::string to_string() {
22
//return (idName != "") ? idName : std::format("num{}",idIndex);
23
- return std::format("{}[{}]", idName, idIndex);
+ return fmt::format("{}[{}]", idName, idIndex);
24
}
25
26
bool operator< (const NodeID& other) const { // why tf is this here
0 commit comments