tools: fix perl warning about unescaped left brace in gimp-mkenums

Simply use "\{" instead of "{" for matching a literal "{".
This commit is contained in:
Michael Natterer
2019-01-03 15:20:33 +01:00
parent 84942d2614
commit 4a294f6d6a

View File

@ -263,7 +263,7 @@ while (<>) {
next if /^\s*typedef\s+enum.*;/;
if (m@^\s*typedef\s+enum\s*
({)?\s*
(\{)?\s*
(?:/\*<
(([^*]|\*(?!/))*)
>\s*\*/)?