File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ if( MSVC )
73
73
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} ${COMMON_COMPILER_FLAGS} " )
74
74
endif ()
75
75
set (CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} " )
76
- set (COMMON_FLAGS "/W4 /wd4267 /wd4244 /wd4100 " )
76
+ set (COMMON_FLAGS "/W4 /wd4267 /wd4244" )
77
77
set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} ${COMMON_FLAGS} " )
78
78
set (CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} ${COMMON_FLAGS} " )
79
79
set (CMAKE_C_FLAGS "${CMAKE_C_FLAGS} ${COMMON_FLAGS} " )
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ class UnreadMessagesDetector : public ::testing::EmptyTestEventListener {
14
14
public:
15
15
UnreadMessagesDetector () = default ;
16
16
17
- void OnTestEnd (const ::testing::TestInfo& test_info) override {
17
+ void OnTestEnd (const ::testing::TestInfo& /* test_info*/ ) override {
18
18
int rank = -1 ;
19
19
MPI_Comm_rank (MPI_COMM_WORLD, &rank);
20
20
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ class UnreadMessagesDetector : public ::testing::EmptyTestEventListener {
11
11
public:
12
12
UnreadMessagesDetector () = default ;
13
13
14
- void OnTestEnd (const ::testing::TestInfo& test_info) override {
14
+ void OnTestEnd (const ::testing::TestInfo& /* test_info*/ ) override {
15
15
int rank = -1 ;
16
16
MPI_Comm_rank (MPI_COMM_WORLD, &rank);
17
17
You can’t perform that action at this time.
0 commit comments