aboutsummaryrefslogtreecommitdiffhomepage
path: root/Firestore/third_party
diff options
context:
space:
mode:
authorGravatar Marek Gilbert <mcg@google.com>2017-12-06 09:22:18 -0800
committerGravatar Marek Gilbert <mcg@google.com>2017-12-07 13:02:52 -0800
commit3693d70a24fe45fd985b04f9acde5db9f01136c2 (patch)
treeca2f06b0342699b1d96f84055993b1472a3f6c56 /Firestore/third_party
parent58ff30b73fee4b87228506a8ca9ecb0e2602474e (diff)
Remove use of absl::synchronization_internal::ThreadPool
Diffstat (limited to 'Firestore/third_party')
-rw-r--r--Firestore/third_party/abseil-cpp/absl/base/config_test.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/Firestore/third_party/abseil-cpp/absl/base/config_test.cc b/Firestore/third_party/abseil-cpp/absl/base/config_test.cc
index c839712..83d45b7 100644
--- a/Firestore/third_party/abseil-cpp/absl/base/config_test.cc
+++ b/Firestore/third_party/abseil-cpp/absl/base/config_test.cc
@@ -17,7 +17,7 @@
#include <cstdint>
#include "gtest/gtest.h"
-#include "absl/synchronization/internal/thread_pool.h"
+// #include "absl/synchronization/internal/thread_pool.h"
namespace {
@@ -41,6 +41,7 @@ TEST(ConfigTest, Endianness) {
#endif
}
+#if 0
#if defined(ABSL_HAVE_THREAD_LOCAL)
TEST(ConfigTest, ThreadLocal) {
static thread_local int mine_mine_mine = 16;
@@ -56,5 +57,6 @@ TEST(ConfigTest, ThreadLocal) {
EXPECT_EQ(16, mine_mine_mine);
}
#endif
+#endif // 0
} // namespace