Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dconeybe committed Jan 13, 2025
1 parent 8f65488 commit 11b5324
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
3 changes: 2 additions & 1 deletion Firestore/core/test/unit/util/thread_safe_memoizer_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include <memory>
#include <string>
#include <thread>
#include <thread> // NOLINT(build/c++11)
#include <utility>

#include "Firestore/core/test/unit/util/thread_safe_memoizer_testing.h"
Expand All @@ -27,6 +27,7 @@

namespace {

// NOLINTNEXTLINE(build/namespaces_literals)
using namespace std::literals::string_literals;
using firebase::firestore::testing::CountDownLatch;
using firebase::firestore::testing::CountingFunc;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
#include <random>
#include <sstream>
#include <string>
#include <thread>
#include <thread> // NOLINT(build/c++11)
#include <utility>
#include <vector>

Expand Down
4 changes: 2 additions & 2 deletions Firestore/core/test/unit/util/thread_safe_memoizer_testing.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@
#include <atomic>
#include <functional>
#include <memory>
#include <mutex>
#include <mutex> // NOLINT(build/c++11)
#include <string>
#include <thread>
#include <thread> // NOLINT(build/c++11)
#include <vector>

#include "gtest/gtest.h"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@

#include <algorithm>
#include <array>
#include <thread>
#include <thread> // NOLINT(build/c++11)

#include "gtest/gtest.h"

Expand Down

0 comments on commit 11b5324

Please sign in to comment.