Skip to content
Snippets Groups Projects
Verified Commit 60aac896 authored by Timm Fitschen's avatar Timm Fitschen
Browse files

BUG: make Value non-abstract class

parent f9b48652
No related branches found
No related tags found
1 merge request!25F cpp to string
...@@ -247,9 +247,8 @@ public: ...@@ -247,9 +247,8 @@ public:
static const std::vector<ScalarValue> empty_collection; static const std::vector<ScalarValue> empty_collection;
return empty_collection; return empty_collection;
} }
inline auto ToString() const noexcept -> const std::string { [[nodiscard]] inline auto ToString() const noexcept -> const std::string {
CAOSDB_DEBUG_MESSAGE_STRING(*wrapped, out) return ProtoMessageWrapper::ToString();
return out;
} }
friend class Value; friend class Value;
...@@ -416,6 +415,10 @@ public: ...@@ -416,6 +415,10 @@ public:
return *this; return *this;
} }
[[nodiscard]] inline auto ToString() const noexcept -> const std::string {
return ProtoMessageWrapper::ToString();
}
friend class Entity; friend class Entity;
friend class Property; friend class Property;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment