1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
|
#ifndef vcl_config_manual_h_
#define vcl_config_manual_h_
//:
// \file
// This file either is or was generated from vcl_config_manual.h.in
// \brief manual options
//: VCL_USE_NATIVE_STL
// Whether to use the compiler's STL.
#define VCL_USE_NATIVE_STL @VCL_USE_NATIVE_STL@
//: VCL_USE_NATIVE_COMPLEX
// Whether to use the compiler's complex type.
#define VCL_USE_NATIVE_COMPLEX @VCL_USE_NATIVE_COMPLEX@
// Used to be set from VCL_USE_NATIVE_STL, which worked fine.
// If you don't use the stl flag's setting you're on your own.
// #define VCL_USE_NATIVE_COMPLEX VCL_USE_NATIVE_STL
//: VCL_USE_IMPLICIT_TEMPLATES
// Whether to use implicit template instantiation.
#define VCL_USE_IMPLICIT_TEMPLATES @VCL_USE_IMPLICIT_TEMPLATES@
#endif // vcl_config_manual_h_
|