diff options
Diffstat (limited to 'gcc/fortran/scanner.c')
-rw-r--r-- | gcc/fortran/scanner.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gcc/fortran/scanner.c b/gcc/fortran/scanner.c index 0467f8a..f714ed0 100644 --- a/gcc/fortran/scanner.c +++ b/gcc/fortran/scanner.c @@ -375,9 +375,10 @@ add_path_to_list (gfc_directorylist **list, const char *path, void -gfc_add_include_path (const char *path, bool use_for_modules, bool file_dir) +gfc_add_include_path (const char *path, bool use_for_modules, bool file_dir, + bool warn) { - add_path_to_list (&include_dirs, path, use_for_modules, file_dir, true); + add_path_to_list (&include_dirs, path, use_for_modules, file_dir, warn); /* For '#include "..."' these directories are automatically searched. */ if (!file_dir) |