Whitespace: Automated whitespace fixes (large commit)

Apply the pre-commit hook whitespace fixes to all files in the repo.

(Line endings, blank lines at end of file, trailing whitespace)
This commit is contained in:
Angus Gratton
2020-11-10 18:40:01 +11:00
committed by bot
parent e82eac4354
commit 66fb5a29bb
1975 changed files with 9433 additions and 10476 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# This is the project CMakeLists.txt file for the test subproject
# This is the project CMakeLists.txt file for the test subproject
cmake_minimum_required(VERSION 3.5)
include($ENV{IDF_PATH}/tools/cmake/project.cmake)
@@ -1,2 +1,2 @@
idf_component_register(SRCS "mean.c"
INCLUDE_DIRS "include")
INCLUDE_DIRS "include")
@@ -3,5 +3,5 @@
# The following line is needed to force the linker to include all the object
# files into the application, even if the functions in these object files
# are not referenced from outside (which is usually the case for unit tests).
#
#
COMPONENT_ADD_LDFLAGS = -Wl,--whole-archive -l$(COMPONENT_NAME) -Wl,--no-whole-archive
@@ -1,2 +1,2 @@
idf_component_register(SRCS "example_unit_test_main.c"
INCLUDE_DIRS ".")
INCLUDE_DIRS ".")
@@ -1,2 +1,2 @@
idf_component_register(SRCS "example_unit_test_test.c"
INCLUDE_DIRS ".")
INCLUDE_DIRS ".")
@@ -52,4 +52,3 @@ static void print_banner(const char* text)
{
printf("\n#### %s #####\n\n", text);
}