From 6e18511dccd3b1f73110f6d719f7d476a0bf7fba Mon Sep 17 00:00:00 2001 From: quou Date: Sat, 28 Dec 2024 19:04:47 +1100 Subject: fix warnings --- sc/includer.cpp | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'sc') 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(); -- cgit v1.2.3-54-g00ecf