Skip to content
Snippets Groups Projects
Commit bae707f6 authored by Maxence Naud's avatar Maxence Naud
Browse files

[Doc] Change comment that was not relevant

parent 0bc0ed73
No related branches found
No related tags found
No related merge requests found
...@@ -41,7 +41,7 @@ private: ...@@ -41,7 +41,7 @@ private:
auto sharedB = b.lock(); auto sharedB = b.lock();
if (!sharedB) return false; // nothing after expired pointer if (!sharedB) return false; // nothing after expired pointer
if (!sharedA) return true; if (!sharedA) return true;
return sharedA < sharedB; // Assuming GraphView has a valid comparison operator return sharedA < sharedB; // shared_ptr has a valid comparison operator
} }
}; };
std::string mName; /** Name of the Node. Should be unique. */ std::string mName; /** Name of the Node. Should be unique. */
...@@ -402,4 +402,4 @@ private: ...@@ -402,4 +402,4 @@ private:
}; };
} // namespace Aidge } // namespace Aidge
#endif /* __AIDGE_CORE_GRAPH_NODE_H__ */ #endif /* __AIDGE_CORE_GRAPH_NODE_H__ */
\ No newline at end of file
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