Internals: Add VL_MT_SAFE attribute to functions that requires locking. (#3805)

This commit is contained in:
Kamil Rakoczy
2023-03-17 20:24:15 -04:00
committed by GitHub
parent d6c5d40f9b
commit 798d7346cf
35 changed files with 185 additions and 143 deletions
+1 -1
View File
@@ -60,7 +60,7 @@ public:
, m_name{name} {}
~V3GraphTestVertex() override = default;
// ACCESSORS
string name() const override { return m_name; }
string name() const override VL_MT_STABLE { return m_name; }
};
class V3GraphTestVarVertex final : public V3GraphTestVertex {