summaryrefslogtreecommitdiff
path: root/plugins/Dbx_tree/src/BTree.h
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/Dbx_tree/src/BTree.h')
-rw-r--r--plugins/Dbx_tree/src/BTree.h14
1 files changed, 0 insertions, 14 deletions
diff --git a/plugins/Dbx_tree/src/BTree.h b/plugins/Dbx_tree/src/BTree.h
index 20c2abfd71..277f206b2b 100644
--- a/plugins/Dbx_tree/src/BTree.h
+++ b/plugins/Dbx_tree/src/BTree.h
@@ -25,24 +25,10 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include <stack>
#include "lockfree_hashmultimap.h"
#include "sigslot.h"
-#ifdef _MSC_VER
-#include "stdint.h"
-#else
#include <stdint.h>
-#endif
#include "Logger.h"
-#ifndef _MSC_VER
-#ifdef offsetof
-#undef offsetof
-#endif
-#define offsetof(TYPE, MEMBER) \
- ( (reinterpret_cast <size_t> \
- (&reinterpret_cast <const volatile char &> \
- (static_cast<TYPE *> (0)->MEMBER))))
-#endif
-
template <typename TKey, uint16_t SizeParam = 4>
class CBTree
{