Skip to content

Commit

Permalink
Actually run codegen this time.
Browse files Browse the repository at this point in the history
  • Loading branch information
bitshifter committed Jun 8, 2024
1 parent d2b6675 commit 0cd0121
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 42 deletions.
7 changes: 0 additions & 7 deletions src/f32/coresimd/quat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -746,13 +746,6 @@ impl Quat {
pub fn as_dquat(self) -> DQuat {
DQuat::from_xyzw(self.x as f64, self.y as f64, self.z as f64, self.w as f64)
}

#[inline]
#[must_use]
#[deprecated(since = "0.24.2", note = "Use as_dquat() instead")]
pub fn as_f64(self) -> DQuat {
self.as_dquat()
}
}

#[cfg(not(target_arch = "spirv"))]
Expand Down
7 changes: 0 additions & 7 deletions src/f32/neon/quat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -776,13 +776,6 @@ impl Quat {
pub fn as_dquat(self) -> DQuat {
DQuat::from_xyzw(self.x as f64, self.y as f64, self.z as f64, self.w as f64)
}

#[inline]
#[must_use]
#[deprecated(since = "0.24.2", note = "Use as_dquat() instead")]
pub fn as_f64(self) -> DQuat {
self.as_dquat()
}
}

#[cfg(not(target_arch = "spirv"))]
Expand Down
7 changes: 0 additions & 7 deletions src/f32/scalar/quat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -721,13 +721,6 @@ impl Quat {
pub fn as_dquat(self) -> DQuat {
DQuat::from_xyzw(self.x as f64, self.y as f64, self.z as f64, self.w as f64)
}

#[inline]
#[must_use]
#[deprecated(since = "0.24.2", note = "Use as_dquat() instead")]
pub fn as_f64(self) -> DQuat {
self.as_dquat()
}
}

#[cfg(not(target_arch = "spirv"))]
Expand Down
7 changes: 0 additions & 7 deletions src/f32/sse2/quat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -772,13 +772,6 @@ impl Quat {
pub fn as_dquat(self) -> DQuat {
DQuat::from_xyzw(self.x as f64, self.y as f64, self.z as f64, self.w as f64)
}

#[inline]
#[must_use]
#[deprecated(since = "0.24.2", note = "Use as_dquat() instead")]
pub fn as_f64(self) -> DQuat {
self.as_dquat()
}
}

#[cfg(not(target_arch = "spirv"))]
Expand Down
7 changes: 0 additions & 7 deletions src/f32/wasm32/quat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -761,13 +761,6 @@ impl Quat {
pub fn as_dquat(self) -> DQuat {
DQuat::from_xyzw(self.x as f64, self.y as f64, self.z as f64, self.w as f64)
}

#[inline]
#[must_use]
#[deprecated(since = "0.24.2", note = "Use as_dquat() instead")]
pub fn as_f64(self) -> DQuat {
self.as_dquat()
}
}

#[cfg(not(target_arch = "spirv"))]
Expand Down
7 changes: 0 additions & 7 deletions src/f64/dquat.rs
Original file line number Diff line number Diff line change
Expand Up @@ -703,13 +703,6 @@ impl DQuat {
pub fn as_quat(self) -> Quat {
Quat::from_xyzw(self.x as f32, self.y as f32, self.z as f32, self.w as f32)
}

#[inline]
#[must_use]
#[deprecated(since = "0.24.2", note = "Use as_quat() instead")]
pub fn as_f32(self) -> Quat {
self.as_quat()
}
}

#[cfg(not(target_arch = "spirv"))]
Expand Down

0 comments on commit 0cd0121

Please sign in to comment.