Skip to content

Commit

Permalink
fixed compile error unsued parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
Norym committed Jul 14, 2020
1 parent 1b75674 commit 5026461
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required (VERSION 3.16)

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

SET(PRJ_NAME "siguni")
project(${PRJ_NAME})
Expand Down
4 changes: 2 additions & 2 deletions helper.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@ namespace siguni::helper
}

std::vector<std::string_view>
CSignalStrings::GetValueItems( const std::string & attString,
const char attSplitCharacter )
CSignalStrings::GetValueItems( const std::string & /*attString*/,
const char /*attSplitCharacter*/ )
{
std::vector<std::string_view> items;
return items;
Expand Down

0 comments on commit 5026461

Please sign in to comment.