From bfc39d5c8028b722e2e73b0fd3cff8af910548b1 Mon Sep 17 00:00:00 2001 From: Christian Howe Date: Tue, 25 Apr 2017 01:00:26 -0400 Subject: [PATCH] Expose InstanceError --- ash/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ash/src/lib.rs b/ash/src/lib.rs index 3391d67..be12968 100644 --- a/ash/src/lib.rs +++ b/ash/src/lib.rs @@ -3,7 +3,7 @@ extern crate shared_library; extern crate lazy_static; pub use instance::{Instance, DeviceError}; pub use device::Device; -pub use entry::{Entry, LoadingError}; +pub use entry::{Entry, InstanceError, LoadingError}; mod instance; mod device;