Skip to content

Commit 263440f

Browse files
committed
changing white-space in comment to get tests to rerun
1 parent a7759e6 commit 263440f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/gsl/pointers

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -272,13 +272,13 @@ auto make_strict_not_null(T&& t) {
272272
return strict_not_null<std::remove_cv_t<std::remove_reference_t<T>>>{std::forward<T>(t)};
273273
}
274274

275-
#if (defined(__cpp_deduction_guides) && (__cpp_deduction_guides >= 201611L))
275+
#if ( defined(__cpp_deduction_guides) && (__cpp_deduction_guides >= 201611L) )
276276

277277
// deduction guides to prevent the ctad-maybe-unsupported warning
278278
template <class T> not_null(T) -> not_null<T>;
279279
template <class T> strict_not_null(T) -> strict_not_null<T>;
280280

281-
#endif // (defined(__cpp_deduction_guides) && (__cpp_deduction_guides >= 201611L))
281+
#endif // ( defined(__cpp_deduction_guides) && (__cpp_deduction_guides >= 201611L) )
282282

283283
} // namespace gsl
284284

0 commit comments

Comments
 (0)