fix clang config.

update README
This commit is contained in:
bolero-MURAKAMI 2012-07-05 22:05:50 +09:00
parent e8f7d3c610
commit d51bd06eda
2 changed files with 5 additions and 1 deletions

4
README
View file

@ -132,6 +132,10 @@ https://github.com/sscrisk/CEL---ConstExpr-Library
このマクロが定義されているとき、数学関数の実装にビルトイン関数を使用しない。
 (When this macro is defined, does not use the built-in function to the implementation of mathematical functions.)
#define SPROUT_CONFIG_DISABLE_BUILTIN_BIT_OPERATION
このマクロが定義されているとき、ビット処理の実装にビルトイン関数を使用しない。
 (When this macro is defined, does not use the built-in function to the implementation of bit operations.)
#define SPROUT_CONFIG_DISABLE_SUPPORT_TEMPORARY_CONTAINER_ITERATION
このマクロが定義されているとき、アルゴリズムへのコンテナの一時オブジェクト渡しをサポートしない。
 (When this macro is defined, does not support passing a temporary object of the container to the algorithm.)

View file

@ -21,7 +21,7 @@
# define SPROUT_NO_DELEGATING_CONSTRUCTORS
#endif
#if ((__GNUC__ >= 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) && defined(__GXX_EXPERIMENTAL_CXX0X__))
#if (__has_feature(cxx_constexpr) && (__GNUC__ >= 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 6)) && defined(__GXX_EXPERIMENTAL_CXX0X__))
# define SPROUT_HAS_CONSTEXPR_CMATH_FUNCTION
#endif