Skip to content

Commit

Permalink
removed empty line
Browse files Browse the repository at this point in the history
  • Loading branch information
SpecificProtagonist committed Jul 29, 2023
1 parent ee87442 commit c0c73b0
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 14 deletions.
4 changes: 2 additions & 2 deletions codegen/templates/vec.rs.tera
Original file line number Diff line number Diff line change
Expand Up @@ -1080,7 +1080,7 @@ impl {{ self_t }} {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.
{% endif %}
{%- endif %}
#[inline]
pub fn div_euclid(self, rhs: Self) -> Self {
Self::new(
Expand All @@ -1099,7 +1099,7 @@ impl {{ self_t }} {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.
{% endif %}
{%- endif %}
///
/// [Euclidean division]: {{scalar_t}}::rem_euclid
#[inline]
Expand Down
2 changes: 0 additions & 2 deletions src/i32/ivec2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,6 @@ impl IVec2 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

#[inline]
pub fn div_euclid(self, rhs: Self) -> Self {
Self::new(self.x.div_euclid(rhs.x), self.y.div_euclid(rhs.y))
Expand All @@ -300,7 +299,6 @@ impl IVec2 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

///
/// [Euclidean division]: i32::rem_euclid
#[inline]
Expand Down
2 changes: 0 additions & 2 deletions src/i32/ivec3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ impl IVec3 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

#[inline]
pub fn div_euclid(self, rhs: Self) -> Self {
Self::new(
Expand All @@ -348,7 +347,6 @@ impl IVec3 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

///
/// [Euclidean division]: i32::rem_euclid
#[inline]
Expand Down
2 changes: 0 additions & 2 deletions src/i32/ivec4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,6 @@ impl IVec4 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

#[inline]
pub fn div_euclid(self, rhs: Self) -> Self {
Self::new(
Expand All @@ -375,7 +374,6 @@ impl IVec4 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

///
/// [Euclidean division]: i32::rem_euclid
#[inline]
Expand Down
2 changes: 0 additions & 2 deletions src/i64/i64vec2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,6 @@ impl I64Vec2 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

#[inline]
pub fn div_euclid(self, rhs: Self) -> Self {
Self::new(self.x.div_euclid(rhs.x), self.y.div_euclid(rhs.y))
Expand All @@ -300,7 +299,6 @@ impl I64Vec2 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

///
/// [Euclidean division]: i64::rem_euclid
#[inline]
Expand Down
2 changes: 0 additions & 2 deletions src/i64/i64vec3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,6 @@ impl I64Vec3 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

#[inline]
pub fn div_euclid(self, rhs: Self) -> Self {
Self::new(
Expand All @@ -348,7 +347,6 @@ impl I64Vec3 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

///
/// [Euclidean division]: i64::rem_euclid
#[inline]
Expand Down
2 changes: 0 additions & 2 deletions src/i64/i64vec4.rs
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,6 @@ impl I64Vec4 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

#[inline]
pub fn div_euclid(self, rhs: Self) -> Self {
Self::new(
Expand All @@ -375,7 +374,6 @@ impl I64Vec4 {
///
/// # Panics
/// This function will panic if any `rhs` element is 0 or the division results in overflow.

///
/// [Euclidean division]: i64::rem_euclid
#[inline]
Expand Down

0 comments on commit c0c73b0

Please sign in to comment.