Skip to content
Snippets Groups Projects
Commit 58884648 authored by Markus Holzer's avatar Markus Holzer
Browse files

Fix header inclusion

parent 359cab34
No related merge requests found
......@@ -74,3 +74,4 @@ CMakeDefs.h
/walberla-config.cmake
/cmake-build-debug/
/cmake-build-release/
/cmake-build-debug-remote/
......@@ -236,7 +236,7 @@ class KernelFamily:
return self._ast_attrs[name]
def get_headers(self):
all_headers = [get_headers(ast) for ast in self.all_asts]
all_headers = [list(get_headers(ast)) for ast in self.all_asts]
return reduce(merge_sorted_lists, all_headers)
def generate_kernel_invocation_code(self, **kwargs):
......
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