mirror of
https://github.com/gnss-sdr/gnss-sdr
synced 2024-12-14 20:20:35 +00:00
Fix multi-line comment (fixes -Wcomment)
This commit is contained in:
parent
1745b71f13
commit
13ca2b08b8
@ -2045,7 +2045,8 @@ gsl_DISABLE_MSVC_WARNINGS(26432 26410 26415 26418 26472 26439 26440 26455 26473
|
|||||||
{
|
{
|
||||||
gsl_Expects(data_.ptr_ != gsl_nullptr);
|
gsl_Expects(data_.ptr_ != gsl_nullptr);
|
||||||
}
|
}
|
||||||
#else // a.k.a. !( gsl_HAVE( TYPE_TRAITS ) && gsl_HAVE( DEFAULT_FUNCTION_TEMPLATE_ARG ) && !gsl_BETWEEN( gsl_COMPILER_CLANG_VERSION, 1, 400 ) && !gsl_BETWEEN( gsl_COMPILER_APPLECLANG_VERSION, 1, 1001 ) \
|
#else
|
||||||
|
// a.k.a. !( gsl_HAVE( TYPE_TRAITS ) && gsl_HAVE( DEFAULT_FUNCTION_TEMPLATE_ARG ) && !gsl_BETWEEN( gsl_COMPILER_CLANG_VERSION, 1, 400 ) && !gsl_BETWEEN( gsl_COMPILER_APPLECLANG_VERSION, 1, 1001 )
|
||||||
// If type_traits are not available, then we can't distinguish `is_convertible<>` and `is_constructible<>`, so we unconditionally permit implicit construction.
|
// If type_traits are not available, then we can't distinguish `is_convertible<>` and `is_constructible<>`, so we unconditionally permit implicit construction.
|
||||||
template <class U>
|
template <class U>
|
||||||
gsl_constexpr14 not_null(U other)
|
gsl_constexpr14 not_null(U other)
|
||||||
@ -2087,7 +2088,8 @@ gsl_DISABLE_MSVC_WARNINGS(26432 26410 26415 26418 26472 26439 26440 26455 26473
|
|||||||
{
|
{
|
||||||
gsl_Expects(data_.ptr_ != gsl_nullptr);
|
gsl_Expects(data_.ptr_ != gsl_nullptr);
|
||||||
}
|
}
|
||||||
#else // a.k.a. !( gsl_HAVE( TYPE_TRAITS ) && gsl_HAVE( DEFAULT_FUNCTION_TEMPLATE_ARG ) && !gsl_BETWEEN( gsl_COMPILER_CLANG_VERSION, 1, 400 ) && !gsl_BETWEEN( gsl_COMPILER_APPLECLANG_VERSION, 1, 1001 ) \
|
#else
|
||||||
|
// a.k.a. !( gsl_HAVE( TYPE_TRAITS ) && gsl_HAVE( DEFAULT_FUNCTION_TEMPLATE_ARG ) && !gsl_BETWEEN( gsl_COMPILER_CLANG_VERSION, 1, 400 ) && !gsl_BETWEEN( gsl_COMPILER_APPLECLANG_VERSION, 1, 1001 )
|
||||||
// If type_traits are not available, then we can't distinguish `is_convertible<>` and `is_constructible<>`, so we unconditionally permit implicit construction.
|
// If type_traits are not available, then we can't distinguish `is_convertible<>` and `is_constructible<>`, so we unconditionally permit implicit construction.
|
||||||
template <class U>
|
template <class U>
|
||||||
gsl_constexpr14 not_null(not_null<U> other)
|
gsl_constexpr14 not_null(not_null<U> other)
|
||||||
|
Loading…
Reference in New Issue
Block a user