diff --git a/README.md b/README.md index 77256e8..94cbf64 100644 --- a/README.md +++ b/README.md @@ -37,3 +37,4 @@ If you plan to work a pull request, please file an issue first so that we can ag - Sunjay Varma (GitHub : [@sunjay](https://github.com/sunjay)) - Timo Kösters (GitHub : [@timokoesters](https://github.com/timokoesters)) - Imbris (Github: [@imberflur](https://github.com/imberflur)) +- Lukas Wirth (Github: [@veykril](https://github.com/veykril)) \ No newline at end of file diff --git a/src/mat.rs b/src/mat.rs index 4e48d03..db853f2 100644 --- a/src/mat.rs +++ b/src/mat.rs @@ -4013,7 +4013,7 @@ macro_rules! mat_declare_modules { /// Rationale: /// - (Matrix * Vector) multiplications are more efficient; /// - This is the layout expected by OpenGL; - pub use crate::column_major::*; + pub use self::column_major::*; } }