diff options
Diffstat (limited to 'absl/memory')
-rw-r--r-- | absl/memory/CMakeLists.txt | 5 | ||||
-rw-r--r-- | absl/memory/memory_test.cc | 2 |
2 files changed, 2 insertions, 5 deletions
diff --git a/absl/memory/CMakeLists.txt b/absl/memory/CMakeLists.txt index 5958f5c52bfb..8f9e731fe6a0 100644 --- a/absl/memory/CMakeLists.txt +++ b/absl/memory/CMakeLists.txt @@ -53,7 +53,7 @@ absl_test( set(MEMORY_EXCEPTION_SAFETY_TEST_SRC "memory_exception_safety_test.cc") set(MEMORY_EXCEPTION_SAFETY_TEST_PUBLIC_LIBRARIES absl::memory - absl_base_internal_exception_safety_testing + absl_internal_exception_safety_testing ) absl_test( @@ -66,6 +66,3 @@ absl_test( PRIVATE_COMPILE_FLAGS ${ABSL_EXCEPTIONS_FLAG} ) - - - diff --git a/absl/memory/memory_test.cc b/absl/memory/memory_test.cc index 2e453e22ba5b..54f920b54964 100644 --- a/absl/memory/memory_test.cc +++ b/absl/memory/memory_test.cc @@ -145,7 +145,7 @@ TEST(Make_UniqueTest, NotAmbiguousWithStdMakeUnique) { explicit TakesStdType(const std::vector<int> &vec) {} }; using absl::make_unique; - make_unique<TakesStdType>(std::vector<int>()); + (void)make_unique<TakesStdType>(std::vector<int>()); } #if 0 |