diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-03-28 12:20:39 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-03-28 12:20:39 +0100 |
commit | 025aa693fd47228d101062248ff7b71ec9638a71 (patch) | |
tree | 5d05594382e4329580a2aafbff0fdb96cb51f799 /include | |
parent | 8f31b0cf2a753cd7b6af8fd1dc730d0693ebeb90 (diff) |
Convert the global list of dynamic reference pointers to an intrusively linked list
Diffstat (limited to 'include')
-rw-r--r-- | include/dynref.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dynref.h b/include/dynref.h index 1d05b35a0..02474b67e 100644 --- a/include/dynref.h +++ b/include/dynref.h @@ -22,7 +22,7 @@ #include "base.h" -class CoreExport dynamic_reference_base : public interfacebase +class CoreExport dynamic_reference_base : public interfacebase, public intrusive_list_node<dynamic_reference_base> { private: std::string name; |