Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change simd to repr simd & bump version number #101

Merged
merged 1 commit into from Aug 29, 2015
Merged
Changes from all commits
Commits
File filter...
Filter file types
Jump to…
Jump to file
Failed to load files.

Always

Just for now

@@ -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/"
@@ -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)]

@@ -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,
ProTip! Use n and p to navigate between commits in a pull request.
You can’t perform that action at this time.