diff options
Diffstat (limited to 'include/gtest')
-rw-r--r-- | include/gtest/internal/gtest-port.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/gtest/internal/gtest-port.h b/include/gtest/internal/gtest-port.h index a5f432c6..1b0b6dc5 100644 --- a/include/gtest/internal/gtest-port.h +++ b/include/gtest/internal/gtest-port.h @@ -797,7 +797,7 @@ Derived* CheckedDowncastToActualType(Base* base) { return dynamic_cast<Derived*>(base); // NOLINT #else return static_cast<Derived*>(base); // Poor man's downcast. -#endif // GTEST_HAS_RTTI +#endif } #if GTEST_HAS_STREAM_REDIRECTION_ |