summaryrefslogtreecommitdiff
path: root/plugins/Dbx_tree/src/BTree.h
diff options
context:
space:
mode:
authorKirill Volinsky <mataes2007@gmail.com>2013-09-16 14:39:48 +0000
committerKirill Volinsky <mataes2007@gmail.com>2013-09-16 14:39:48 +0000
commit18fd4bec97159cbaa7501a8a1b67540e0865e88b (patch)
tree75ebe7e194ba940cc12f8263ce9a35a32760d40e /plugins/Dbx_tree/src/BTree.h
parent3d60e28ce573bfd28286d108eeb43ec29bf44d48 (diff)
removed not needed _MSC_VER checks
git-svn-id: http://svn.miranda-ng.org/main/trunk@6088 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
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
{