Skip to content

Commit

Permalink
AbsoluteEmbeddedLocation doesnt need to implement Copy
Browse files Browse the repository at this point in the history
  • Loading branch information
rbalicki2 committed Jan 4, 2025
1 parent b18976d commit db10124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/common_lang_types/src/location.rs
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ pub struct EmbeddedRelativeLocation {
/// The AbsoluteEmbeddedLocation struct knows how to turn that relative
/// path to an absolute path (i.e. it contains the absolute path to
/// the project_root) for use when reading the file.
#[derive(Copy, Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
#[derive(Clone, Debug, Eq, PartialEq, Ord, PartialOrd, Hash)]
pub struct AbsoluteEmbeddedLocation {
pub embedded_location: EmbeddedRelativeLocation,
}
Expand Down

0 comments on commit db10124

Please sign in to comment.