blob: 7031e357b8d07ef37f86d737b47b013e78607648 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/* file : libcommon/common/config-vc.h
* copyright : Copyright (c) 2009-2012 Code Synthesis Tools CC
* 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 has C++11 always enabled.
*/
#if _MSC_VER >= 1600
# define HAVE_CXX11
#endif
#endif /* LIBCOMMON_COMMON_CONFIG_VC_H */
|