mirror of
https://github.com/boostorg/type_traits.git
synced 2025-07-29 20:17:21 +02:00
Merge pull request #161 from boostorg/pr/tt-has-accurate-function
Fix misspelled macro name
This commit is contained in:
@ -83,7 +83,7 @@
|
||||
//
|
||||
#if !defined(BOOST_NO_CXX11_VARIADIC_TEMPLATES) && !BOOST_WORKAROUND(BOOST_GCC, < 40805)\
|
||||
&& !BOOST_WORKAROUND(BOOST_MSVC, < 1900) && !BOOST_WORKAROUND(__clang_major__, <= 4)
|
||||
# define BOOST_TT_HAS_ASCCURATE_IS_FUNCTION
|
||||
# define BOOST_TT_HAS_ACCURATE_IS_FUNCTION
|
||||
#endif
|
||||
|
||||
#if defined(_MSVC_LANG) && (_MSVC_LANG >= 201703)
|
||||
|
@ -14,7 +14,7 @@
|
||||
#include <boost/type_traits/detail/config.hpp>
|
||||
#include <boost/config/workaround.hpp>
|
||||
|
||||
#ifdef BOOST_TT_HAS_ASCCURATE_IS_FUNCTION
|
||||
#ifdef BOOST_TT_HAS_ACCURATE_IS_FUNCTION
|
||||
|
||||
#include <boost/type_traits/detail/is_function_cxx_11.hpp>
|
||||
|
||||
|
@ -13,7 +13,7 @@
|
||||
|
||||
#include <boost/type_traits/detail/config.hpp>
|
||||
|
||||
#ifdef BOOST_TT_HAS_ASCCURATE_IS_FUNCTION
|
||||
#ifdef BOOST_TT_HAS_ACCURATE_IS_FUNCTION
|
||||
|
||||
#include <boost/type_traits/detail/is_member_function_pointer_cxx_11.hpp>
|
||||
|
||||
|
@ -16,7 +16,7 @@
|
||||
#pragma GCC diagnostic ignored "-Wnoexcept-type"
|
||||
#endif
|
||||
|
||||
#ifdef BOOST_TT_HAS_ASCCURATE_IS_FUNCTION
|
||||
#ifdef BOOST_TT_HAS_ACCURATE_IS_FUNCTION
|
||||
|
||||
struct X
|
||||
{
|
||||
@ -138,7 +138,7 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_function<vfoo4_t>::value, true);
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef BOOST_TT_HAS_ASCCURATE_IS_FUNCTION
|
||||
#ifdef BOOST_TT_HAS_ACCURATE_IS_FUNCTION
|
||||
|
||||
test_cv_qual(&X::f);
|
||||
test_cv_qual(&X::fc);
|
||||
|
@ -16,7 +16,7 @@
|
||||
#pragma GCC diagnostic ignored "-Wnoexcept-type"
|
||||
#endif
|
||||
|
||||
#ifdef BOOST_TT_HAS_ASCCURATE_IS_FUNCTION
|
||||
#ifdef BOOST_TT_HAS_ACCURATE_IS_FUNCTION
|
||||
struct tricky_members
|
||||
{
|
||||
BOOST_TT_PROC void noexcept_proc()noexcept
|
||||
@ -85,7 +85,7 @@ BOOST_CHECK_INTEGRAL_CONSTANT(::tt::is_member_function_pointer<tcall_proc>::valu
|
||||
|
||||
#endif
|
||||
|
||||
#ifdef BOOST_TT_HAS_ASCCURATE_IS_FUNCTION
|
||||
#ifdef BOOST_TT_HAS_ACCURATE_IS_FUNCTION
|
||||
test_tricky(&tricky_members::const_ref_proc);
|
||||
#ifndef BOOST_TT_NO_NOEXCEPT_SEPARATE_TYPE
|
||||
test_tricky(&tricky_members::noexcept_proc);
|
||||
|
Reference in New Issue
Block a user