diff options
Diffstat (limited to 'src/scanner.l')
-rw-r--r-- | src/scanner.l | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/scanner.l b/src/scanner.l index d037938..4f05a10 100644 --- a/src/scanner.l +++ b/src/scanner.l @@ -3522,8 +3522,8 @@ IDLATTR ("["[^\]]*"]"){BN}* { current->name += "-p"; } - if (current->section == Entry::PROTOCOL_SEC /*|| - current->section == Entry::OBJCIMPL_SEC*/) + if (current->section == Entry::PROTOCOL_SEC || + current->section == Entry::OBJCIMPL_SEC) { unput('{'); // fake start of body } |