Commit 9d4ff082 authored by Dominik Charousset's avatar Dominik Charousset

Remove obsolete comment and redundant prototype

parent c82647ff
...@@ -41,8 +41,6 @@ public: ...@@ -41,8 +41,6 @@ public:
// A reference counted, implementation-specific implementation of a node ID. // A reference counted, implementation-specific implementation of a node ID.
class data : public ref_counted { class data : public ref_counted {
public: public:
// static intrusive_ptr<data> create_singleton();
~data() override; ~data() override;
virtual bool valid() const noexcept = 0; virtual bool valid() const noexcept = 0;
...@@ -281,9 +279,6 @@ error inspect(serializer& sink, const node_id& x); ...@@ -281,9 +279,6 @@ error inspect(serializer& sink, const node_id& x);
/// @relates node_id /// @relates node_id
error inspect(deserializer& source, node_id& x); error inspect(deserializer& source, node_id& x);
/// @relates node_id
std::string to_string(const node_id& x);
/// Appends `x` in human-readable string representation to `str`. /// Appends `x` in human-readable string representation to `str`.
/// @relates node_id /// @relates node_id
void append_to_string(std::string& str, const node_id& x); void append_to_string(std::string& str, const node_id& x);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment