Skip to content

Commit

Permalink
changing white-space in comment to get tests to rerun
Browse files Browse the repository at this point in the history
  • Loading branch information
JordanMaples committed Nov 18, 2019
1 parent a7759e6 commit 263440f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/gsl/pointers
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit 263440f

Please sign in to comment.