(svn r15296) -Cleanup: remove redundant _MSC_VER >= 1400 checks, older versions aren't supported anymore. One check in stdafx.h is enough

This commit is contained in:
smatz
2009-01-30 17:54:48 +00:00
parent 1c7cb8368c
commit df79660531
5 changed files with 10 additions and 26 deletions

View File

@@ -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.
*