Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔨 Remove
static
from internal function
During refactoring of `not_null`, the `detail::not_null_to_address` was relocated from a `static` member function of `not_null` to being a `detail` function -- though it unintentionally retained the `static` identifier. This appears to potentially be confusing MSVC, and is objectively wrong already since this forces the symbols to have internal linkage. These modifiers have been removed.
- Loading branch information