summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2020-10-10 09:26:30 -0700
committerAdrian Thurston <thurston@colm.net>2020-10-10 09:26:30 -0700
commitfaebdeac54b33f3bd456b017727c394935fac920 (patch)
treea08a124a7c1c80a54705127c3a8a826cb1c219ec
parent401cb0041f5871215d83c64ab5e021149078e426 (diff)
downloadragel-faebdeac54b33f3bd456b017727c394935fac920.tar.gz
the primary rust type u8 is unsigned, specify it as such
-rw-r--r--src/host-rust/main.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/host-rust/main.cc b/src/host-rust/main.cc
index 93c5147d..edbf91db 100644
--- a/src/host-rust/main.cc
+++ b/src/host-rust/main.cc
@@ -35,7 +35,7 @@ const char *defaultOutFnRust( const char *inputFileName )
HostType hostTypesRust[] =
{
- { "u8", 0, "byte", true, true, false, 0, UCHAR_MAX, 0, 0, 4 },
+ { "u8", 0, "byte", false, true, false, 0, UCHAR_MAX, 0, 0, 4 },
};
const HostLang hostLangRust =