summaryrefslogtreecommitdiff
path: root/libcommon/common/config-vc.h
diff options
context:
space:
mode:
Diffstat (limited to 'libcommon/common/config-vc.h')
-rw-r--r--libcommon/common/config-vc.h25
1 files changed, 0 insertions, 25 deletions
diff --git a/libcommon/common/config-vc.h b/libcommon/common/config-vc.h
deleted file mode 100644
index 16d89a0..0000000
--- a/libcommon/common/config-vc.h
+++ /dev/null
@@ -1,25 +0,0 @@
-/* file : libcommon/common/config-vc.h
- * license : GNU GPL v2; see accompanying LICENSE file
- */
-
-/* Configuration file for Windows/VC++. */
-
-#ifndef LIBCOMMON_COMMON_CONFIG_VC_H
-#define LIBCOMMON_COMMON_CONFIG_VC_H
-
-#define HAVE_TR1_MEMORY
-
-/* VC++10 and later has C++11 always enabled.
- */
-#if (defined(_MSC_VER) && _MSC_VER >= 1600) || \
- (defined(ODB_MSC_VER) && ODB_MSC_VER >= 1600)
-# define HAVE_CXX11
-// Strongly typed enums are supported starting from VC++11.
-//
-# if (defined(_MSC_VER) && _MSC_VER >= 1700) || \
- (defined(ODB_MSC_VER) && ODB_MSC_VER >= 1700)
-# define HAVE_CXX11_ENUM
-# endif
-#endif
-
-#endif /* LIBCOMMON_COMMON_CONFIG_VC_H */