File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ if (${UTPP_AMPLIFY_WARNINGS})
33
33
if (CMAKE_CXX_FLAGS MATCHES "/W[0-4]" )
34
34
string (REGEX REPLACE "/W[0-4]" "/W4" CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} /WX" )
35
35
else ()
36
- set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Werror -Wno-ignored-qualifiers " )
36
+ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wextra -Werror" )
37
37
endif ()
38
38
endif ()
39
39
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ using namespace std;
11
11
12
12
namespace {
13
13
14
- const char * const maxSignedIntegralStr (size_t nBytes)
14
+ const char * maxSignedIntegralStr (size_t nBytes)
15
15
{
16
16
switch (nBytes)
17
17
{
@@ -28,7 +28,7 @@ namespace {
28
28
}
29
29
}
30
30
31
- const char * const minSignedIntegralStr (size_t nBytes)
31
+ const char * minSignedIntegralStr (size_t nBytes)
32
32
{
33
33
switch (nBytes)
34
34
{
@@ -45,7 +45,7 @@ namespace {
45
45
}
46
46
}
47
47
48
- const char * const maxUnsignedIntegralStr (size_t nBytes)
48
+ const char * maxUnsignedIntegralStr (size_t nBytes)
49
49
{
50
50
switch (nBytes)
51
51
{
You can’t perform that action at this time.
0 commit comments