attaching schema nodes progress

This commit is contained in:
Sascha Kühl
2025-07-14 15:57:14 +02:00
parent 1b2847696d
commit 0d93b9b1ed
19 changed files with 182 additions and 91 deletions
+7 -4
View File
@@ -81,9 +81,12 @@ bool operator<(const error &lhs, const std::error_code &rhs) {
return lhs.ec_ < rhs;
}
// std::ostream & operator<<(std::ostream &out, const error &err) {
// out << err.ec_ << " " << err.ec_.message();
// return out;
// }
std::ostream & operator<<(std::ostream &out, const error &err) {
out << err.ec_ << " " << err.ec_.message() << "\n";
for (const auto & [key, value] : err.error_infos_) {
out << " " << key << ": " << value << "\n";
}
return out;
}
}