Skip to content

Commit 5026461

Browse files
author
Norym
committed
fixed compile error unsued parameter
1 parent 1b75674 commit 5026461

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required (VERSION 3.16)
22

33
SET(CMAKE_CXX_STANDARD 20)
4-
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Wpedantic -Werror=pedantic -Wextra")
4+
SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall -Werror -Wpedantic -Werror=pedantic -Wextra")
55

66
SET(PRJ_NAME "siguni")
77
project(${PRJ_NAME})

helper.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ namespace siguni::helper
6161
}
6262

6363
std::vector<std::string_view>
64-
CSignalStrings::GetValueItems( const std::string & attString,
65-
const char attSplitCharacter )
64+
CSignalStrings::GetValueItems( const std::string & /*attString*/,
65+
const char /*attSplitCharacter*/ )
6666
{
6767
std::vector<std::string_view> items;
6868
return items;

0 commit comments

Comments
 (0)