Skip to content

Commit cac906f

Browse files
committed
add // NOLINT(build/c++11) comments to make check_imports.swift happy
1 parent e546421 commit cac906f

File tree

3 files changed

+8
-6
lines changed

3 files changed

+8
-6
lines changed

Firestore/core/src/util/testing_hooks.cc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@
1717
#include "Firestore/core/src/util/testing_hooks.h"
1818

1919
#include <functional>
20-
#include <mutex>
20+
#include <mutex> // NOLINT(build/c++11)
2121
#include <type_traits>
2222
#include <unordered_map>
2323
#include <utility>
24+
#include <vector>
2425

2526
#include "Firestore/core/src/util/no_destructor.h"
2627

Firestore/core/test/unit/testutil/async_testing.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818
#define FIRESTORE_CORE_TEST_UNIT_TESTUTIL_ASYNC_TESTING_H_
1919

2020
#include <chrono> // NOLINT(build/c++11)
21-
#include <condition_variable>
2221
#include <functional>
2322
#include <future> // NOLINT(build/c++11)
2423
#include <memory>
25-
#include <mutex>
24+
#include <mutex> // NOLINT(build/c++11)
2625
#include <thread> // NOLINT(build/c++11)
2726
#include <vector>
27+
#include <utility>
2828

2929
#include "gtest/gtest.h"
3030

Firestore/core/test/unit/util/testing_hooks_test.cc

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@
1616

1717
#include "Firestore/core/src/util/testing_hooks.h"
1818

19-
#include <chrono>
20-
#include <future>
19+
#include <chrono> // NOLINT(build/c++11)
20+
#include <future> // NOLINT(build/c++11)
2121
#include <memory>
22-
#include <thread>
22+
#include <thread> // NOLINT(build/c++11)
23+
#include <vector> // NOLINT(build/c++11)
2324

2425
#include "Firestore/core/src/api/listener_registration.h"
2526
#include "Firestore/core/src/util/defer.h"

0 commit comments

Comments
 (0)