Fix mismatched comments.
This commit is contained in:
parent
7f29e0a88b
commit
1ddbd7062d
@ -239,7 +239,7 @@
|
||||
# if defined(__clang__)
|
||||
# if __has_feature(__cxx_constexpr__)
|
||||
# define ASIO_HAS_CONSTEXPR 1
|
||||
# endif // __has_feature(__cxx_constexr__)
|
||||
# endif // __has_feature(__cxx_constexpr__)
|
||||
# endif // defined(__clang__)
|
||||
# if defined(__GNUC__)
|
||||
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 8)) || (__GNUC__ > 4)
|
||||
@ -399,7 +399,7 @@
|
||||
# if defined(__clang__)
|
||||
# if __has_feature(__cxx_return_type_deduction__)
|
||||
# define ASIO_HAS_RETURN_TYPE_DEDUCTION 1
|
||||
# endif // __has_feature(__cxx_alias_templates__)
|
||||
# endif // __has_feature(__cxx_return_type_deduction__)
|
||||
# elif (__cplusplus >= 201402)
|
||||
# define ASIO_HAS_RETURN_TYPE_DEDUCTION 1
|
||||
# elif defined(__cpp_return_type_deduction)
|
||||
@ -441,7 +441,7 @@
|
||||
# if __has_feature(__cxx_variable_templates__)
|
||||
# define ASIO_HAS_VARIABLE_TEMPLATES 1
|
||||
# endif // __has_feature(__cxx_variable_templates__)
|
||||
# endif // (__cplusplus >= 201703)
|
||||
# endif // (__cplusplus >= 201402)
|
||||
# endif // defined(__clang__)
|
||||
# if defined(__GNUC__)
|
||||
# if (__GNUC__ >= 6)
|
||||
@ -489,7 +489,7 @@
|
||||
# if defined(__clang__)
|
||||
# if (__cplusplus >= 201402)
|
||||
# define ASIO_HAS_CONSTANT_EXPRESSION_SFINAE 1
|
||||
# endif // (__cplusplus >= 201703)
|
||||
# endif // (__cplusplus >= 201402)
|
||||
# endif // defined(__clang__)
|
||||
# if defined(__GNUC__)
|
||||
# if (__GNUC__ >= 7)
|
||||
@ -513,7 +513,7 @@
|
||||
# if (__cplusplus >= 201103)
|
||||
# define ASIO_HAS_WORKING_EXPRESSION_SFINAE 1
|
||||
# endif // (__cplusplus >= 201103)
|
||||
# endif // defined(ASIO_MSVC)
|
||||
# endif // !defined(ASIO_MSVC)
|
||||
# endif // !defined(ASIO_DISABLE_WORKING_EXPRESSION_SFINAE)
|
||||
#endif // !defined(ASIO_HAS_WORKING_EXPRESSION_SFINAE)
|
||||
|
||||
@ -568,14 +568,14 @@
|
||||
# endif // !defined(ASIO_LVALUE_REF_QUAL)
|
||||
# if !defined(ASIO_RVALUE_REF_QUAL)
|
||||
# define ASIO_RVALUE_REF_QUAL &&
|
||||
# endif // !defined(ASIO_LVALUE_REF_QUAL)
|
||||
# endif // !defined(ASIO_RVALUE_REF_QUAL)
|
||||
#else // defined(ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
||||
# if !defined(ASIO_LVALUE_REF_QUAL)
|
||||
# define ASIO_LVALUE_REF_QUAL
|
||||
# endif // !defined(ASIO_LVALUE_REF_QUAL)
|
||||
# if !defined(ASIO_RVALUE_REF_QUAL)
|
||||
# define ASIO_RVALUE_REF_QUAL
|
||||
# endif // !defined(ASIO_LVALUE_REF_QUAL)
|
||||
# endif // !defined(ASIO_RVALUE_REF_QUAL)
|
||||
#endif // defined(ASIO_HAS_REF_QUALIFIED_FUNCTIONS)
|
||||
|
||||
// Standard library support for system errors.
|
||||
@ -722,7 +722,7 @@
|
||||
# define ASIO_HAS_STD_ATOMIC 1
|
||||
# endif // __has_include(<atomic>)
|
||||
# endif // (__clang_major__ >= 10)
|
||||
# endif /// defined(__apple_build_version__) && defined(_LIBCPP_VERSION)
|
||||
# endif // defined(__apple_build_version__) && defined(_LIBCPP_VERSION)
|
||||
# endif // defined(__clang__)
|
||||
# if defined(__GNUC__)
|
||||
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 7)) || (__GNUC__ > 4)
|
||||
@ -879,7 +879,7 @@
|
||||
# if defined(__clang__)
|
||||
# if __has_feature(__cxx_nullptr__)
|
||||
# define ASIO_HAS_NULLPTR 1
|
||||
# endif // __has_feature(__cxx_rvalue_references__)
|
||||
# endif // __has_feature(__cxx_nullptr__)
|
||||
# elif defined(__GNUC__)
|
||||
# if ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 6)) || (__GNUC__ > 4)
|
||||
# if (__cplusplus >= 201103) || defined(__GXX_EXPERIMENTAL_CXX0X__)
|
||||
@ -1034,7 +1034,7 @@
|
||||
# elif (__cplusplus >= 201103)
|
||||
# if __has_include(<future>)
|
||||
# define ASIO_HAS_STD_FUTURE 1
|
||||
# endif // __has_include(<mutex>)
|
||||
# endif // __has_include(<future>)
|
||||
# endif // (__cplusplus >= 201103)
|
||||
# endif // defined(__clang__)
|
||||
# if defined(__GNUC__)
|
||||
@ -1196,7 +1196,7 @@
|
||||
# if defined(ASIO_MSVC)
|
||||
# if (_MSC_VER >= 1900)
|
||||
# define ASIO_HAS_STD_NESTED_EXCEPTION 1
|
||||
# endif // (_MSC_VER >= 1800)
|
||||
# endif // (_MSC_VER >= 1900)
|
||||
# endif // defined(ASIO_MSVC)
|
||||
# endif // !defined(ASIO_DISABLE_STD_NESTED_EXCEPTION)
|
||||
#endif // !defined(ASIO_HAS_STD_NESTED_EXCEPTION)
|
||||
@ -1240,7 +1240,7 @@
|
||||
# if __has_include(<experimental/source_location>)
|
||||
# define ASIO_HAS_STD_EXPERIMENTAL_SOURCE_LOCATION 1
|
||||
# endif // __has_include(<experimental/source_location>)
|
||||
# endif // ((__GNUC__ == 4) && (__GNUC_MINOR__ >= 9)) || (__GNUC__ > 4)
|
||||
# endif // (__cplusplus >= 201709)
|
||||
# endif // defined(__GNUC__)
|
||||
# endif // !defined(ASIO_DISABLE_STD_EXPERIMENTAL_SOURCE_LOCATION)
|
||||
#endif // !defined(ASIO_HAS_STD_EXPERIMENTAL_SOURCE_LOCATION)
|
||||
|
Loading…
Reference in New Issue
Block a user