aboutsummaryrefslogtreecommitdiff
path: root/src/lib.rs
diff options
context:
space:
mode:
authorMartin Fischer <martin@push-f.com>2021-04-08 15:46:24 +0200
committerMartin Fischer <martin@push-f.com>2021-04-08 15:57:18 +0200
commiteb0e8506472f2d672b00227bb07089c313484945 (patch)
tree01e7d8ee398940515952830a1177e497c561f937 /src/lib.rs
parent18a022579737acc599277258fc4a8472ba73a8b0 (diff)
stop exporting macros
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 453c5de..40cbf8f 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -17,7 +17,6 @@ mod macros;
/// Create a [`SmallCharSet`], with each space-separated number stored in the set.
///
/// [`SmallCharSet`]: struct.SmallCharSet.html
-#[macro_export]
macro_rules! small_char_set ( ($($e:expr)+) => (
$ crate ::util::smallcharset::SmallCharSet {
bits: $( (1 << ($e as usize)) )|+