Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use fully-qualified name for size_of (#3838)
Add `core::mem::` prefix to all uses of `size_of`. Background: in some cases, I get errors of the form: ``` Compiling kani_core v0.58.0 (https://github.com/model-checking/kani#35015dce) error[E0425]: cannot find function `size_of` in this scope --> /home/ubuntu/.cargo/git/checkouts/kani-0ce0dacf5e98886d/35015dc/library/kani/src/lib.rs:54:1 | 54 | kani_core::kani_lib!(kani); | ^^^^^^^^^^^^^^^^^^^^^^^^^^ not found in this scope | = help: consider importing one of these items: core::mem::size_of crate::core_path::intrinsics::size_of crate::core_path::mem::size_of std::mem::size_of = note: this error originates in the macro `kani_core::ptr_generator` which comes from the expansion of the macro `kani_core::kani_lib` (in Nightly builds, run with -Z macro-backtrace for more info) ``` when adding the Kani library as a dependency. Adding `core::mem::` fixes those issues. By submitting this pull request, I confirm that my contribution is made under the terms of the Apache 2.0 and MIT licenses.
- Loading branch information