summaryrefslogtreecommitdiffstats
path: root/src/ic.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/ic.rs')
-rw-r--r--src/ic.rs6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/ic.rs b/src/ic.rs
index 56dfc6a..8e4db42 100644
--- a/src/ic.rs
+++ b/src/ic.rs
@@ -1,8 +1,10 @@
/// ICs
use crate::private;
-pub struct Resolution12Bit(pub(crate) ());
-pub struct Resolution16Bit(pub(crate) ());
+#[non_exhaustive]
+pub struct Resolution12Bit;
+#[non_exhaustive]
+pub struct Resolution16Bit;
macro_rules! ic_marker {
($name:ident) => {