Use full paths in includes

This commit is contained in:
sfc-gh-tclinkenbeard 2022-08-31 14:39:14 -07:00
parent e7a82c9283
commit b10a2a58f7
9 changed files with 15 additions and 15 deletions

View File

@ -25,17 +25,17 @@
#include <utility>
#include <vector>
#include "fdbclient/CommitTransaction.h"
#include "fdbclient/EncryptKeyProxyInterface.h"
#include "fdbclient/FDBTypes.h"
#include "fdbclient/StorageServerInterface.h"
#include "fdbclient/CommitTransaction.h"
#include "fdbclient/TagThrottle.actor.h"
#include "fdbclient/GlobalConfig.h"
#include "fdbclient/GrvProxyInterface.h"
#include "fdbclient/StorageServerInterface.h"
#include "fdbclient/TagThrottle.actor.h"
#include "fdbclient/VersionVector.h"
#include "fdbrpc/Stats.h"
#include "fdbrpc/TimedRequest.h"
#include "GrvProxyInterface.h"
struct CommitProxyInterface {
constexpr static FileIdentifier file_identifier = 8954922;

View File

@ -20,7 +20,7 @@
#ifndef FDBCLIENT_METACLUSTER_H
#define FDBCLIENT_METACLUSTER_H
#include "CoordinationInterface.h"
#include "fdbclient/CoordinationInterface.h"
#include "json_spirit/json_spirit_value.h"
#pragma once
@ -180,4 +180,4 @@ struct MetaclusterMetadata {
static KeyBackedObjectProperty<MetaclusterRegistrationEntry, decltype(IncludeVersion())>& metaclusterRegistration();
};
#endif
#endif

View File

@ -20,7 +20,7 @@
#ifndef FDBCLIENT_READYOURWRITES_H
#define FDBCLIENT_READYOURWRITES_H
#include "Status.h"
#include "fdbclient/Status.h"
#pragma once
#include "fdbclient/NativeAPI.actor.h"

View File

@ -28,7 +28,7 @@
#include "fdbclient/BlobGranuleCommon.h"
#include "fdbclient/BlobWorkerInterface.h" // TODO move the functions that depend on this out of here and into BlobWorkerInterface.h to remove this depdendency
#include "fdbclient/StorageServerInterface.h"
#include "Tenant.h"
#include "fdbclient/Tenant.h"
// Don't warn on constants being defined in this file.
#pragma clang diagnostic push

View File

@ -439,7 +439,7 @@ testCaseCount = 30
outputFile = open("ActorFuzz.actor.cpp", "wt")
print(header, file=outputFile)
print('// THIS FILE WAS GENERATED BY actorFuzz.py; DO NOT MODIFY IT DIRECTLY\n', file=outputFile)
print('#include "ActorFuzz.h"\n', file=outputFile)
print('#include "fdbrpc/ActorFuzz.h"\n', file=outputFile)
print('#ifndef WIN32\n', file=outputFile)
actors = [randomActor(i) for i in range(testCaseCount)]

View File

@ -20,7 +20,7 @@
#ifndef FOUNDATIONDB_DDRELOCATIONQUEUE_H
#define FOUNDATIONDB_DDRELOCATIONQUEUE_H
#include "DataDistribution.actor.h"
#include "fdbserver/DataDistribution.actor.h"
// send request/signal to DDRelocationQueue through interface
// call synchronous method from components outside DDRelocationQueue
struct IDDRelocationQueue {

View File

@ -19,7 +19,7 @@
*/
#ifndef FOUNDATIONDB_DDSHARDTRACKER_H
#define FOUNDATIONDB_DDSHARDTRACKER_H
#include "DataDistribution.actor.h"
#include "fdbserver/DataDistribution.actor.h"
// send request/signal to DDTracker through interface
// call synchronous method from components outside DDShardTracker

View File

@ -18,8 +18,8 @@
* limitations under the License.
*/
#include "ServiceBase.h"
#include "ThreadPool.h"
#include "fdbservice/ServiceBase.h"
#include "fdbservice/ThreadPool.h"
#include <iostream>
#include <fstream>

View File

@ -17,7 +17,7 @@
\***************************************************************************/
#pragma region Includes
#include "ServiceBase.h"
#include "fdbservice/ServiceBase.h"
#include <assert.h>
#include <strsafe.h>
#pragma endregion
@ -357,4 +357,4 @@ void CServiceBase::WriteErrorLogEntry(const char* function, int error) {
WriteEventLogEntry(message, EVENTLOG_ERROR_TYPE);
}
#pragma endregion
#pragma endregion