Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "euclid"
version = "0.1.5"
version = "0.1.6"
authors = ["The Servo Project Developers"]
description = "Geometry primitives"
documentation = "http://doc.servo.org/euclid/"
Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
// option. This file may not be copied, modified, or distributed
// except according to those terms.

#![feature(asm, custom_derive, plugin, simd, zero_one, test)]
#![feature(asm, custom_derive, plugin, repr_simd, zero_one, test)]

#![plugin(serde_macros)]

Expand Down
2 changes: 1 addition & 1 deletion src/side_offsets.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ impl<T: Zero> SideOffsets2D<T> {

/// A SIMD enabled version of SideOffsets2D specialized for i32.
#[derive(Clone, Copy, PartialEq)]
#[simd]
#[repr(simd)]
#[cfg_attr(feature = "heap_size", derive(HeapSizeOf))]
pub struct SideOffsets2DSimdI32 {
pub top: i32,
Expand Down