diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-08-30 10:35:21 +0200 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-08-30 10:35:21 +0200 |
commit | 84ae29d0eadb5baa7ad4f517c3ce62995205d2f5 (patch) | |
tree | 49e211e34bf1dbbe18965da43c027dcbd64d9aa9 /include/intrusive_list_impl.h | |
parent | 8fc268558586584479c622a3852f647eaf3a9b0e (diff) |
Move the intrusive list containers into the insp namespace
Diffstat (limited to 'include/intrusive_list_impl.h')
-rw-r--r-- | include/intrusive_list_impl.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/intrusive_list_impl.h b/include/intrusive_list_impl.h index 0efe06d2e..1dd36b03a 100644 --- a/include/intrusive_list_impl.h +++ b/include/intrusive_list_impl.h @@ -17,6 +17,9 @@ */ +namespace insp +{ + template <typename T, typename Tag> class INSPIRCD_INTRUSIVE_LIST_NAME { @@ -165,3 +168,5 @@ class INSPIRCD_INTRUSIVE_LIST_NAME #endif size_t listsize; }; + +} // namespace insp |