summaryrefslogtreecommitdiff
path: root/src/misc/binaryheap.hpp
diff options
context:
space:
mode:
authorsmatz <smatz@openttd.org>2009-01-30 17:54:48 +0000
committersmatz <smatz@openttd.org>2009-01-30 17:54:48 +0000
commitdf7966053102ed6e509992554ab7544c56454f26 (patch)
tree1e4742d382679303b0a826121f73634dee538903 /src/misc/binaryheap.hpp
parent1c7cb8368cb90a5e94daed132c6f49be40931c81 (diff)
downloadopenttd-df7966053102ed6e509992554ab7544c56454f26.tar.xz
(svn r15296) -Cleanup: remove redundant _MSC_VER >= 1400 checks, older versions aren't supported anymore. One check in stdafx.h is enough
Diffstat (limited to 'src/misc/binaryheap.hpp')
-rw-r--r--src/misc/binaryheap.hpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/misc/binaryheap.hpp b/src/misc/binaryheap.hpp
index ed5a44b71..2206ccd03 100644
--- a/src/misc/binaryheap.hpp
+++ b/src/misc/binaryheap.hpp
@@ -5,12 +5,6 @@
#ifndef BINARYHEAP_HPP
#define BINARYHEAP_HPP
-//void *operator new (size_t size, void *p) {return p;}
-#if defined(_MSC_VER) && (_MSC_VER >= 1400)
-//void operator delete (void *p, void *p2) {}
-#endif
-
-
/**
* Binary Heap as C++ template.
*