Skip to content
This repository has been archived by the owner on Oct 28, 2021. It is now read-only.

Tabs to Four Spaces #71

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ if( CMAKE_CXX_COMPILER_ID MATCHES "Clang|AppleClang|GNU" )
target_compile_options( ClaraTests PRIVATE -Wall -Wextra -pedantic -Werror )
endif()
if( CMAKE_CXX_COMPILER_ID MATCHES "MSVC" )
target_compile_options( ClaraTests PRIVATE /W4 /WX )
target_compile_options( ClaraTests PRIVATE /W4 /WX )
endif()

if (ENABLE_COVERAGE)
Expand Down
2 changes: 1 addition & 1 deletion include/clara.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -481,7 +481,7 @@ namespace detail {
template<typename T>
auto operator|( T const &other ) const -> Parser;

template<typename T>
template<typename T>
auto operator+( T const &other ) const -> Parser;
};

Expand Down