aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJordan Maples [MSFT] <49793787+JordanMaples@users.noreply.github.com>2019-11-18 11:39:36 -0800
committerJordan Maples [MSFT] <49793787+JordanMaples@users.noreply.github.com>2019-11-18 11:39:36 -0800
commit263440f2a10cf016b0ab18071508b6fde4ebdfc6 (patch)
tree576a61da8e7672c88e998f4ba8e2c4b414c3fb03
parenta7759e6d3f7514f70ed698dc05f8369d9278c69c (diff)
downloadplatform_external_Microsoft-GSL-263440f2a10cf016b0ab18071508b6fde4ebdfc6.tar.gz
platform_external_Microsoft-GSL-263440f2a10cf016b0ab18071508b6fde4ebdfc6.tar.bz2
platform_external_Microsoft-GSL-263440f2a10cf016b0ab18071508b6fde4ebdfc6.zip
changing white-space in comment to get tests to rerun
-rw-r--r--include/gsl/pointers4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/gsl/pointers b/include/gsl/pointers
index bc6a91c..7afed1c 100644
--- a/include/gsl/pointers
+++ b/include/gsl/pointers
@@ -272,13 +272,13 @@ auto make_strict_not_null(T&& t) {
return strict_not_null<std::remove_cv_t<std::remove_reference_t<T>>>{std::forward<T>(t)};
}
-#if (defined(__cpp_deduction_guides) && (__cpp_deduction_guides >= 201611L))
+#if ( defined(__cpp_deduction_guides) && (__cpp_deduction_guides >= 201611L) )
// deduction guides to prevent the ctad-maybe-unsupported warning
template <class T> not_null(T) -> not_null<T>;
template <class T> strict_not_null(T) -> strict_not_null<T>;
-#endif // (defined(__cpp_deduction_guides) && (__cpp_deduction_guides >= 201611L))
+#endif // ( defined(__cpp_deduction_guides) && (__cpp_deduction_guides >= 201611L) )
} // namespace gsl