Skip to content
Snippets Groups Projects
Commit 70538937 authored by Alexander Schultheiß's avatar Alexander Schultheiß
Browse files

Fixed float literal in demorgan.c1

parent 01a567d0
Branches
No related merge requests found
......@@ -25,7 +25,7 @@ float dummyFloat(float a) {
float b = 1.0;
float c = .5;
float d = 1e10;
return a * 1.2f;
return a * 1.2;
}
void main() {
......
......@@ -127,7 +127,6 @@ KwReturn: "return"
Id: "a"
Asterisk: "*"
ConstFloat: "1.2"
Id: "f"
Semicolon: ";"
RBrace: "}"
KwVoid: "void"
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment