mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-31 03:40:08 +00:00
Remove && false from test code
This commit is contained in:
+1
-1
@@ -1536,7 +1536,7 @@ bool is_semicolon_optional_for_node(AstFile *f, Ast *s) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void expect_semicolon_newline_error(AstFile *f, Token const &token, Ast *s) {
|
void expect_semicolon_newline_error(AstFile *f, Token const &token, Ast *s) {
|
||||||
if (build_context.strict_style && false) {
|
if (build_context.strict_style) {
|
||||||
if (f->curr_proc != nullptr && token.string == "\n") {
|
if (f->curr_proc != nullptr && token.string == "\n") {
|
||||||
switch (token.kind) {
|
switch (token.kind) {
|
||||||
case Token_CloseBrace:
|
case Token_CloseBrace:
|
||||||
|
|||||||
Reference in New Issue
Block a user