Commit bcf92f45 authored by Stefan Behnel's avatar Stefan Behnel

Fix signature of `Scope.add_include_file()` to match the one added for verbatim/late includes.

Closes #2736.
parent 25cdf40c
......@@ -969,8 +969,8 @@ class Scope(object):
else:
return outer.is_cpp()
def add_include_file(self, filename):
self.outer_scope.add_include_file(filename)
def add_include_file(self, filename, verbatim_include=None, late=False):
self.outer_scope.add_include_file(filename, verbatim_include, late)
class PreImportScope(Scope):
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment