1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-08-14 11:45:38 +02:00

Fix for 138333. Missing break causing pragmas to be marked as errors.

This commit is contained in:
Doug Schaefer 2006-05-04 18:09:34 +00:00
parent 5cc8961aa0
commit 50b8292fb3

View file

@ -2663,6 +2663,7 @@ abstract class BaseScanner implements IScanner {
case ppPragma: case ppPragma:
skipToNewLine(); skipToNewLine();
processPragma(pos, bufferPos[bufferStackPos]); processPragma(pos, bufferPos[bufferStackPos]);
break;
default: default:
problem = true; problem = true;
break; break;