diff options
author | Davi Arnaut <davi.arnaut@oracle.com> | 2011-04-11 08:39:15 -0300 |
---|---|---|
committer | Davi Arnaut <davi.arnaut@oracle.com> | 2011-04-11 08:39:15 -0300 |
commit | 754381c4b9e35ba5a2b2e11cb6c8194aa13c7831 (patch) | |
tree | 867cdbe9a4bad2b7fa8efb52d7e9142e44e96198 /sql/mdl.h | |
parent | 9f1cacbbc39d40a087af0854d4b5ee5fe2b71ed9 (diff) | |
download | mariadb-git-754381c4b9e35ba5a2b2e11cb6c8194aa13c7831.tar.gz |
Move I_P_List_adapter to sql_plist.h as it is currently being used
for code other then in mdl.h. Since the adapter is generic, it is
better located in sql_plist.h.
Diffstat (limited to 'sql/mdl.h')
-rw-r--r-- | sql/mdl.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/sql/mdl.h b/sql/mdl.h index 4a9397fe215..e0934cb732b 100644 --- a/sql/mdl.h +++ b/sql/mdl.h @@ -286,21 +286,6 @@ private: }; - -/** - Hook class which via its methods specifies which members - of T should be used for participating in MDL lists. -*/ - -template <typename T, T* T::*next, T** T::*prev> -struct I_P_List_adapter -{ - static inline T **next_ptr(T *el) { return &(el->*next); } - - static inline T ***prev_ptr(T *el) { return &(el->*prev); } -}; - - /** A pending metadata lock request. |