From a9cbc9cd3c957996831d731ad50c69f920ab065b Mon Sep 17 00:00:00 2001 From: Ed Tanous Date: Thu, 24 Oct 2019 09:58:39 -0700 Subject: Fix tabbing in CMakeLists.txt In a recent format, the tabbing was made strange tabbing decisions. Luckily, cmake-format doesn't change them after the fact when re-run, so fix it. Signed-off-by: Ed Tanous Change-Id: I95f21f47f84a917a1104d92f8f55603c70cd927c --- CMakeLists.txt | 44 ++++++++++++++++++++++---------------------- 1 file changed, 22 insertions(+), 22 deletions(-) (limited to 'CMakeLists.txt') diff --git a/CMakeLists.txt b/CMakeLists.txt index b93f342053..dfac273024 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -138,20 +138,20 @@ set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \ set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \ --Wall \ --Wextra \ --Wnon-virtual-dtor \ --Wold-style-cast \ --Wcast-align \ --Wunused \ --Woverloaded-virtual \ --Wpedantic \ --Wconversion \ --Wsign-conversion \ --Wnull-dereference \ --Wdouble-promotion \ --Wformat=2 \ --Wno-unused-parameter \ + -Wall \ + -Wextra \ + -Wnon-virtual-dtor \ + -Wold-style-cast \ + -Wcast-align \ + -Wunused \ + -Woverloaded-virtual \ + -Wpedantic \ + -Wconversion \ + -Wsign-conversion \ + -Wnull-dereference \ + -Wdouble-promotion \ + -Wformat=2 \ + -Wno-unused-parameter \ " ) @@ -161,14 +161,14 @@ if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU") set ( CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} \ - -Werror \ - -Wduplicated-cond \ - -Wduplicated-branches \ - -Wlogical-op \ - -Wnull-dereference \ - -Wdouble-promotion \ - -Wformat=2 \ - -Wno-unused-parameter \ + -Werror \ + -Wduplicated-cond \ + -Wduplicated-branches \ + -Wlogical-op \ + -Wnull-dereference \ + -Wdouble-promotion \ + -Wformat=2 \ + -Wno-unused-parameter \ " ) endif (CMAKE_CXX_COMPILER_VERSION VERSION_GREATER 8.0) -- cgit v1.2.3