mirror of
https://github.com/Noratrieb/uwucc.git
synced 2026-01-14 16:45:07 +01:00
fix ints in ast
This commit is contained in:
parent
fb1ce74e08
commit
c519241bd4
5 changed files with 22 additions and 11 deletions
|
|
@ -291,8 +291,8 @@ where
|
|||
Tok::Kw(Kw::Long) => TypeSpecifier::Long,
|
||||
Tok::Kw(Kw::Float) => TypeSpecifier::Float,
|
||||
Tok::Kw(Kw::Double) => TypeSpecifier::Double,
|
||||
Tok::Kw(Kw::Signed) => TypeSpecifier::Signed,
|
||||
Tok::Kw(Kw::Unsigned) => TypeSpecifier::Unsigned,
|
||||
Tok::Kw(Kw::Signed) => TypeSpecifier::Int,
|
||||
Tok::Kw(Kw::Unsigned) => TypeSpecifier::UInt,
|
||||
Tok::Kw(Kw::Bool) => TypeSpecifier::Bool,
|
||||
Tok::Kw(Kw::Complex) => {
|
||||
return Err(ParserError::new(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue