diff options
Diffstat (limited to 'googlemock/src')
-rw-r--r-- | googlemock/src/gmock_main.cc | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/googlemock/src/gmock_main.cc b/googlemock/src/gmock_main.cc index 16f97b0a..18c500f6 100644 --- a/googlemock/src/gmock_main.cc +++ b/googlemock/src/gmock_main.cc @@ -33,9 +33,9 @@ #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() { // Since Google Mock depends on Google Test, InitGoogleMock() is // also responsible for initializing Google Test. Therefore there's @@ -43,9 +43,9 @@ void setup() { testing::InitGoogleMock(); } void loop() { RUN_ALL_TESTS(); } -# if GTEST_OS_ESP8266 +#if GTEST_OS_ESP8266 } -# endif +#endif #else |