video_core: Enforce -Wunused-function
Stops us from merging code with unused functions in the future. If something is invoked behind conditionally evaluated code in a way that the language can't see it (e.g. preprocessor macros), the potentially unused function should use [[maybe_unused]].
This commit is contained in:
parent
3e03391a49
commit
71264ce9a7
1 changed files with 1 additions and 0 deletions
|
@ -314,6 +314,7 @@ else()
|
||||||
-Werror=shadow
|
-Werror=shadow
|
||||||
-Werror=switch
|
-Werror=switch
|
||||||
-Werror=type-limits
|
-Werror=type-limits
|
||||||
|
-Werror=unused-function
|
||||||
-Werror=unused-variable
|
-Werror=unused-variable
|
||||||
|
|
||||||
$<$<CXX_COMPILER_ID:GNU>:-Werror=class-memaccess>
|
$<$<CXX_COMPILER_ID:GNU>:-Werror=class-memaccess>
|
||||||
|
|
Loading…
Reference in a new issue