We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dff7920 commit 3d3a574Copy full SHA for 3d3a574
exercises/concept/lasagna/CMakeLists.txt
@@ -45,7 +45,9 @@ set(CMAKE_BUILD_TYPE Debug)
45
46
if("${CMAKE_CXX_COMPILER_ID}" MATCHES "(GNU|Clang)")
47
set_target_properties(${exercise} PROPERTIES
48
- COMPILE_FLAGS "-Wall -Wextra -Wpedantic -Werror"
+ # added "-Wno-unused-parameter" to remove compiler warnings
49
+ # should make it easier for students to run their first real code
50
+ COMPILE_FLAGS "-Wall -Wextra -Wpedantic -Werror -Wno-unused-parameter"
51
)
52
endif()
53
0 commit comments