Skip to content

Commit 09c3e73

Browse files
author
Клюшниченко Александр Владимирович
committed
some fix
1 parent a6ec093 commit 09c3e73

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ option(RELEASE_BUILD "Silence all runtime asserts" OFF)
99
# Build flags
1010
set(CMAKE_CXX_STANDARD 20)
1111
set(CMAKE_C_STANDARD 17)
12-
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -mavx2 -mno-avx512f -Wall -Werror -Wempty-body -Wredundant-move -pedantic -Wno-gnu -Wno-nested-anon-types -Wno-writable-strings -Wimplicit-fallthrough -Wno-deprecated -O3")
13-
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -mavx2 -mno-avx512f -Wall -Werror -Wempty-body -pedantic -Wno-gnu -Wno-nested-anon-types -Wno-writable-strings -Wno-deprecated -O3")
12+
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -g -Wall -Werror -Wempty-body -Wredundant-move -pedantic -Wimplicit-fallthrough")
13+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -g -Wall -Werror -Wempty-body -pedantic -Wno-nested-anon-types")
1414

1515
if (NO_AUTH_BUILD)
1616
add_compile_definitions(RELEASE_BUILD)

include/Args/Parser.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ namespace args
3636
};
3737

3838
template <typename T>
39-
class OptTuple : public OptBase
39+
class OptTuple final : public OptBase
4040
{
4141
public:
4242
OptTuple()

0 commit comments

Comments
 (0)