From fc644f503fcf6521fb2b115a4f9a997e18aeb33e Mon Sep 17 00:00:00 2001 From: Ben Boyter Date: Tue, 14 Dec 2021 17:00:00 +1100 Subject: [PATCH] tweak --- processor/structs.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/processor/structs.go b/processor/structs.go index 9990a538e..e710d0654 100644 --- a/processor/structs.go +++ b/processor/structs.go @@ -46,11 +46,11 @@ type LanguageFeature struct { Strings *Trie Tokens *Trie Nested bool - ComplexityCheckMask uint64 - SingleLineCommentMask uint64 - MultiLineCommentMask uint64 - StringCheckMask uint64 - ProcessMask uint64 + ComplexityCheckMask byte + SingleLineCommentMask byte + MultiLineCommentMask byte + StringCheckMask byte + ProcessMask byte Keywords []string Quotes []Quote }