diff options
Diffstat (limited to 'sc')
-rw-r--r-- | sc/includer.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sc/includer.cpp b/sc/includer.cpp index 69d9b6a..485a679 100644 --- a/sc/includer.cpp +++ b/sc/includer.cpp @@ -14,6 +14,9 @@ IncludeResult* Includer::includeSystem( const char* includerName, size_t inclusionDepth ) { + (void)headerName; + (void)includerName; + (void)inclusionDepth; return 0; } @@ -27,6 +30,7 @@ IncludeResult* Includer::includeLocal( char* src; size_t src_size; std::filesystem::path inc(includer_name); + (void)inclusionDepth; inc.remove_filename(); inc /= header_name; auto hn = std::filesystem::absolute(inc).string(); |