File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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
278278template <class T> not_null(T) -> not_null<T>;
279279template <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
You can’t perform that action at this time.
0 commit comments