resolve MSVC warning (#321) (#322)

* move warning producing statement after default switch case to within the default case

* remove redundant nullptr assignment in default switch case

* Update single include

---------

Co-authored-by: Berscheid <1885260+pantor@users.noreply.github.com>
This commit is contained in:
Armaan Chahal
2026-01-09 07:03:19 -06:00
committed by GitHub
parent bad1100a03
commit 751eab3906
2 changed files with 0 additions and 2 deletions

View File

@@ -659,7 +659,6 @@ class Parser {
} break; } break;
} }
} }
current_block = nullptr;
} }
public: public:

View File

@@ -2109,7 +2109,6 @@ class Parser {
} break; } break;
} }
} }
current_block = nullptr;
} }
public: public: