diff options
Diffstat (limited to 'src/java/org/anarres')
-rw-r--r-- | src/java/org/anarres/cpp/Preprocessor.java | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/src/java/org/anarres/cpp/Preprocessor.java b/src/java/org/anarres/cpp/Preprocessor.java index ed8da44..158e5b8 100644 --- a/src/java/org/anarres/cpp/Preprocessor.java +++ b/src/java/org/anarres/cpp/Preprocessor.java @@ -984,13 +984,9 @@ public class Preprocessor { } /** - * Handles a include directive. - * - * The user may override this to provide alternate semantics - * for the include directive, for example, creating a Source - * based on a virtual file system. + * Handles an include directive. */ - protected void include(String parent, int line, + private void include(String parent, int line, String name, boolean quoted) throws IOException, LexerException { |