-
Notifications
You must be signed in to change notification settings - Fork 64
Expand file tree
/
Copy pathprecompiled_headers.h
More file actions
32 lines (26 loc) · 990 Bytes
/
precompiled_headers.h
File metadata and controls
32 lines (26 loc) · 990 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/*
* Copyright 2021-Present Couchbase, Inc.
*
* Use of this software is governed by the Business Source License included
* in the file licenses/BSL-Couchbase.txt. As of the Change Date specified
* in that file, in accordance with the Business Source License, use of this
* software will be governed by the Apache License, Version 2.0, included in
* the file licenses/APL2.txt.
*/
#pragma once
#include <gsl/gsl-lite.hpp>
#include <nlohmann/json.hpp>
// Used by most unit test files.
#include <folly/portability/GMock.h>
#include <folly/portability/GTest.h>
// Used throughout the codebase
#include <folly/SharedMutex.h>
#include <folly/Synchronized.h>
// MB-46844:
// Included by collections/vbucket_manifest.h, which in turn included
// by 50+ other files.
// Consider changing collections/vbucket_manifest.h to use pimpl for
// Manifest::map which would avoid the need to include F14Map.h.
#include <folly/container/F14Map.h>
#include <map>
#include <string>