japaric-archived / linalg.rs

[INACTIVE]
Apache License 2.0
29 stars 1 forks source link

refactor(mat!): convert mat! into a syntax extension #7

Closed japaric closed 10 years ago

japaric commented 10 years ago

The new mat! expansion does much less work at runtime.

If you were using the mat! macro, you'll have to change your crate linking from:

#[phase(link, plugin)]
extern crate linalg;

to

extern crate linalg;
#[phase(plugin)]
extern crate linalg_macros;

[breaking-change]