Browse Source
Current code can lead to the following error:
invalid cast from type 'std::nullptr_t' to type 'const volatile info_t*'
Following documentation[^1] from cppreference.com:
9) The null pointer value of any pointer type can be converted to any
other pointer type, resulting in the null pointer value of that type.
Note that the null pointer constant nullptr or any other value of
type std::nullptr_t cannot be converted to a pointer with
reinterpret_cast: implicit conversion or static_cast should be used
for this purpose.
[^1]: https://en.cppreference.com/w/cpp/language/reinterpret_cast
Fix #28526
pull/162/head
committed by
Steve Lhomme
1 changed files with 1 additions and 1 deletions
Loading…
Reference in new issue