mirror of
https://github.com/YosysHQ/nextpnr.git
synced 2026-01-31 14:02:29 +00:00
@@ -170,7 +170,7 @@ struct PDCParser
|
||||
|
||||
while (true) {
|
||||
char c = peek();
|
||||
if (!in_quotes && !in_braces && !escaped && std::isblank(c)) {
|
||||
if (!in_quotes && !in_braces && !escaped && (std::isblank(c) || c == ']')) {
|
||||
break;
|
||||
}
|
||||
get();
|
||||
|
||||
Reference in New Issue
Block a user