diff options
Diffstat (limited to 'core/fxcrt/observable_unittest.cpp')
-rw-r--r-- | core/fxcrt/observable_unittest.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/fxcrt/observable_unittest.cpp b/core/fxcrt/observable_unittest.cpp index 8edc58f613..5e64743d86 100644 --- a/core/fxcrt/observable_unittest.cpp +++ b/core/fxcrt/observable_unittest.cpp @@ -9,6 +9,7 @@ #include "testing/gtest/include/gtest/gtest.h" +namespace fxcrt { namespace { class PseudoObservable : public Observable<PseudoObservable> { @@ -183,3 +184,5 @@ TEST(ObservePtr, Bool) { EXPECT_FALSE(null_bool); EXPECT_TRUE(obj1_bool); } + +} // namespace fxcrt |