From 50a88bd0ca3df1a4973bcf4bfc39254864cebb61 Mon Sep 17 00:00:00 2001 From: Tom Gowan Date: Fri, 10 May 2019 11:17:52 +1000 Subject: [PATCH] public errors --- src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 2dc6863..1de73db 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,5 +1,5 @@ mod compiler; -mod error; +pub mod error; mod reflection; mod srvk; pub mod layouts; @@ -8,7 +8,7 @@ mod watch; pub use layouts::*; pub use reflection::LayoutData; pub use watch::{Message, Watch}; -pub use error::{Error, ConvertError}; +pub use error::*; use spirv_reflect as sr; use vulkano as vk;