Commit 0f128fd5 authored by charles-david's avatar charles-david

Warning for shadowed parameter corrected in common.h

However, not in bundled fmt. Corrects compiling with basic logger with header only and -Werror.
parent ac8a7bc1
...@@ -20,7 +20,7 @@ message(STATUS "Build type: " ${CMAKE_BUILD_TYPE}) ...@@ -20,7 +20,7 @@ message(STATUS "Build type: " ${CMAKE_BUILD_TYPE})
#--------------------------------------------------------------------------------------- #---------------------------------------------------------------------------------------
# compiler config # compiler config
#--------------------------------------------------------------------------------------- #---------------------------------------------------------------------------------------
set(CMAKE_CXX_STANDARD 11) set(CMAKE_CXX_STANDARD 14)
set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_CXX_STANDARD_REQUIRED ON)
set(CMAKE_CXX_EXTENSIONS OFF) set(CMAKE_CXX_EXTENSIONS OFF)
...@@ -30,6 +30,7 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCH ...@@ -30,6 +30,7 @@ if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMPILER_ID}" MATCH
add_compile_options("-Wconversion") add_compile_options("-Wconversion")
add_compile_options("-pedantic") add_compile_options("-pedantic")
add_compile_options("-Wfatal-errors") add_compile_options("-Wfatal-errors")
add_compile_options("-Wshadow")
endif() endif()
#--------------------------------------------------------------------------------------- #---------------------------------------------------------------------------------------
......
...@@ -210,10 +210,10 @@ struct source_loc ...@@ -210,10 +210,10 @@ struct source_loc
, funcname{""} , funcname{""}
{ {
} }
SPDLOG_CONSTEXPR source_loc(const char *filename, int line, const char *funcname) SPDLOG_CONSTEXPR source_loc(const char *t_filename, int t_line, const char *t_funcname)
: filename{filename} : filename{t_filename}
, line{static_cast<uint32_t>(line)} , line{static_cast<uint32_t>(t_line)}
, funcname{funcname} , funcname{t_funcname}
{ {
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment