Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJeffrey Overbey2014-07-05 18:42:41 +0000
committerJeffrey Overbey2014-07-05 18:42:41 +0000
commite25c950eea45ee1f4418844d5023a51175db273d (patch)
treec7baf3fc039b9a6aa6b2e7af1bfaef7d37a05a72
parent55540edbc9c6bbdaa8672bc7218b0990456982cd (diff)
downloadorg.eclipse.photran-e25c950eea45ee1f4418844d5023a51175db273d.tar.gz
org.eclipse.photran-e25c950eea45ee1f4418844d5023a51175db273d.tar.xz
org.eclipse.photran-e25c950eea45ee1f4418844d5023a51175db273d.zip
Bug 438963 - UnsupportedOperationException in iso_c_binding code
-rw-r--r--org.eclipse.photran.core.vpg/lexer/org/eclipse/photran/internal/core/lexer/preprocessor/fortran_include/PreprocessingFreeFormLexerPhase1.java5
1 files changed, 0 insertions, 5 deletions
diff --git a/org.eclipse.photran.core.vpg/lexer/org/eclipse/photran/internal/core/lexer/preprocessor/fortran_include/PreprocessingFreeFormLexerPhase1.java b/org.eclipse.photran.core.vpg/lexer/org/eclipse/photran/internal/core/lexer/preprocessor/fortran_include/PreprocessingFreeFormLexerPhase1.java
index 00f89201..443416f6 100644
--- a/org.eclipse.photran.core.vpg/lexer/org/eclipse/photran/internal/core/lexer/preprocessor/fortran_include/PreprocessingFreeFormLexerPhase1.java
+++ b/org.eclipse.photran.core.vpg/lexer/org/eclipse/photran/internal/core/lexer/preprocessor/fortran_include/PreprocessingFreeFormLexerPhase1.java
@@ -129,9 +129,4 @@ public class PreprocessingFreeFormLexerPhase1 extends FreeFormLexerPhase1
charsToTrim = Math.max(charsToTrim, 0); // TODO: Why does this go negative?
token.setWhiteBefore(whiteBefore.substring(charsToTrim));
}
-
- @Override public void yypushback(int number)
- {
- throw new UnsupportedOperationException();
- }
}

Back to the top