Skip to content
Snippets Groups Projects

ENH: Allow insertion and deletion of single entities

All threads resolved!
3 files
+ 28
5
Compare changes
  • Side-by-side
  • Inline

Files

+ 4
3
@@ -317,9 +317,10 @@ public:
[[nodiscard]] inline auto HasErrors() const -> bool {
return this->errors.wrapped->size() > 0;
}
// TODO(fspreck) These two need implementations...
[[nodiscard]] auto GetWarnings() const -> const Messages &;
[[nodiscard]] auto GetInfos() const -> const Messages &;
[[nodiscard]] auto GetWarnings() const -> const Messages & {
return warnings;
}
[[nodiscard]] auto GetInfos() const -> const Messages & { return infos; }
inline auto ToString() const -> const std::string {
google::protobuf::util::JsonOptions options;
Loading