summaryrefslogtreecommitdiffstats
path: root/googletest/src/gtest_main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'googletest/src/gtest_main.cc')
-rw-r--r--googletest/src/gtest_main.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/googletest/src/gtest_main.cc b/googletest/src/gtest_main.cc
index 3747925..46b27c3 100644
--- a/googletest/src/gtest_main.cc
+++ b/googletest/src/gtest_main.cc
@@ -31,18 +31,18 @@
#include "gtest/gtest.h"
#if GTEST_OS_ESP8266 || GTEST_OS_ESP32
-# if GTEST_OS_ESP8266
+#if GTEST_OS_ESP8266
extern "C" {
-# endif
+#endif
void setup() {
testing::InitGoogleTest();
}
void loop() { RUN_ALL_TESTS(); }
-# if GTEST_OS_ESP8266
+#if GTEST_OS_ESP8266
}
-# endif
+#endif
#else