From 265f7c9add839f4fd473cd724a566ce317a3c1b2 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Tue, 28 Aug 2018 15:37:47 +0200 Subject: [PATCH] Tabs to Four Spaces Replace TABs with 4 spaces. --- CMakeLists.txt | 2 +- include/clara.hpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 7e060df..a293985 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/include/clara.hpp b/include/clara.hpp index fddfac6..2646927 100644 --- a/include/clara.hpp +++ b/include/clara.hpp @@ -481,7 +481,7 @@ namespace detail { template auto operator|( T const &other ) const -> Parser; - template + template auto operator+( T const &other ) const -> Parser; };