Skip to content

Commit

Permalink
fix intellisense warning on intsafe_conversion (#82)
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisGuzak authored and dunhor committed Aug 12, 2019
1 parent 0579691 commit f74a30b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/wil/safecast.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ namespace wil
namespace details
{
// Default error case for undefined conversions in intsafe.h
template<typename OldT, typename NewT> constexpr auto intsafe_conversion = nullptr;
template<typename OldT, typename NewT> constexpr nullptr_t intsafe_conversion = nullptr;

// is_known_safe_static_cast_v determines if a conversion is known to be safe or not. Known
// safe conversions can be handled by static_cast, this includes conversions between the same
Expand Down

0 comments on commit f74a30b

Please sign in to comment.