Skip to content

Commit

Permalink
rename file
Browse files Browse the repository at this point in the history
  • Loading branch information
tjhance committed Jun 14, 2023
1 parent 35553ac commit 460e7d3
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions source/pervasive/prelude.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,6 @@ pub use super::std_specs::option::OptionAdditionalFns;
pub use super::std_specs::result::ResultAdditionalSpecFns;

#[cfg(not(feature = "no_global_allocator"))]
pub use super::std_specs::alloc::VecAdditionalSpecFns;
pub use super::std_specs::vec::VecAdditionalSpecFns;
#[cfg(not(feature = "no_global_allocator"))]
pub use super::std_specs::alloc::VecAdditionalExecFns;
pub use super::std_specs::vec::VecAdditionalExecFns;
2 changes: 1 addition & 1 deletion source/pervasive/slice.rs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ use builtin_macros::*;
use crate::view::*;
use crate::seq::*;

pub use super::std_specs::alloc::VecAdditionalSpecFns;
pub use super::std_specs::vec::VecAdditionalSpecFns;

verus!{

Expand Down
2 changes: 1 addition & 1 deletion source/pervasive/std_specs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ pub mod result;
pub mod option;

#[cfg(not(feature = "no_global_allocator"))]
pub mod alloc;
pub mod vec;
File renamed without changes.
2 changes: 1 addition & 1 deletion source/rust_verify/src/rust_to_vir_expr.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3165,7 +3165,7 @@ pub(crate) fn expr_to_vir_innermost<'tcx>(
krate: Some(Arc::new("vstd".to_string())),
segments: Arc::new(vec![
Arc::new("std_specs".to_string()),
Arc::new("alloc".to_string()),
Arc::new("vec".to_string()),
Arc::new("vec_index".to_string()),
]),
}),
Expand Down

0 comments on commit 460e7d3

Please sign in to comment.