aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 37fc5ef4..86318c88 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -363,9 +363,7 @@
extern crate link_cplusplus;
#[macro_use]
-mod assert;
-#[macro_use]
-mod concat;
+mod macros;
mod cxx_string;
mod cxx_vector;
@@ -380,6 +378,9 @@ mod rust_vec;
mod unique_ptr;
mod unwind;
+#[cfg(not(no_export_symbols))]
+mod symbols;
+
pub use crate::cxx_string::CxxString;
pub use crate::cxx_vector::CxxVector;
pub use crate::exception::Exception;