diff options
author | Arne Döring <arne.doering@gmx.net> | 2019-10-31 19:18:12 +0100 |
---|---|---|
committer | Andreas Rumpf <rumpf_a@web.de> | 2019-10-31 19:18:12 +0100 |
commit | 99078d80d7abb1c47612bc70f7affbde8735066a (patch) | |
tree | ca386a9741101dcbd1f8a77f6be67fc2b972326c /compiler/linter.nim | |
parent | 0c7b6c9c1509d4dc6e0cc752d560fce0ffec494d (diff) | |
download | Nim-99078d80d7abb1c47612bc70f7affbde8735066a.tar.gz |
introduce csize_t instead of fixing csize (#12497)
Diffstat (limited to 'compiler/linter.nim')
-rw-r--r-- | compiler/linter.nim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/linter.nim b/compiler/linter.nim index d3c461b66..41ee24fa5 100644 --- a/compiler/linter.nim +++ b/compiler/linter.nim @@ -37,7 +37,7 @@ proc beautifyName(s: string, k: TSymKind): string = # Types should start with a capital unless builtins like 'int' etc.: if s =~ ["int", "uint", "cint", "cuint", "clong", "cstring", "string", "char", "byte", "bool", "openArray", "seq", "array", "void", - "pointer", "float", "csize", "cdouble", "cchar", "cschar", + "pointer", "float", "csize", "csize_t", "cdouble", "cchar", "cschar", "cshort", "cu", "nil", "typedesc", "auto", "any", "range", "openarray", "varargs", "set", "cfloat", "ref", "ptr", "untyped", "typed", "static", "sink", "lent", "type", "owned"]: |