aboutsummaryrefslogtreecommitdiff
path: root/src/util.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.rs')
-rw-r--r--src/util.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/util.rs b/src/util.rs
index bd28b7b..f931969 100644
--- a/src/util.rs
+++ b/src/util.rs
@@ -4,7 +4,6 @@ pub(super) const CONT_MASK: u8 = (1 << BYTE_SHIFT) - 1;
pub(super) const CONT_TAG: u8 = 0b1000_0000;
-#[cfg_attr(not(windows), allow(dead_code))]
pub(super) const fn is_continuation(byte: u8) -> bool {
byte & !CONT_MASK == CONT_TAG
}