Convert include guard to pragma once (#8957)

This commit is contained in:
Siyuan (Ryans) Zhuang
2020-06-16 01:29:43 -07:00
committed by GitHub
parent cb6f337372
commit b68fede30b
163 changed files with 177 additions and 620 deletions
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_COMMON_BUFFER_H
#define RAY_COMMON_BUFFER_H
#pragma once
#include <cstdint>
#include <cstdio>
@@ -140,5 +139,3 @@ class PlasmaBuffer : public Buffer {
};
} // namespace ray
#endif // RAY_COMMON_BUFFER_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_COMMON_CLIENT_CONNECTION_H
#define RAY_COMMON_CLIENT_CONNECTION_H
#pragma once
#include <deque>
#include <memory>
@@ -217,5 +216,3 @@ class ClientConnection : public ServerConnection {
};
} // namespace ray
#endif // RAY_COMMON_CLIENT_CONNECTION_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef COMMON_PROTOCOL_H
#define COMMON_PROTOCOL_H
#pragma once
#include <flatbuffers/flatbuffers.h>
#include <unordered_set>
@@ -201,5 +200,3 @@ to_flatbuf(flatbuffers::FlatBufferBuilder &fbb, const std::unordered_set<ID> &id
}
return fbb.CreateVector(results);
}
#endif
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CONSTANTS_H_
#define RAY_CONSTANTS_H_
#pragma once
#include <limits.h>
#include <stdint.h>
@@ -43,5 +42,3 @@ constexpr char kWorkerRayletConfigPlaceholder[] = "RAY_WORKER_RAYLET_CONFIG_PLAC
/// Public DNS address which is is used to connect and get local IP.
constexpr char kPublicDNSServerIp[] = "8.8.8.8";
constexpr int kPublicDNSServerPort = 53;
#endif // RAY_CONSTANTS_H_
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_FUNCTION_DESCRIPTOR_H
#define RAY_CORE_WORKER_FUNCTION_DESCRIPTOR_H
#pragma once
#include <string>
@@ -252,5 +251,3 @@ class FunctionDescriptorBuilder {
static FunctionDescriptor Deserialize(const std::string &serialized_binary);
};
} // namespace ray
#endif
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_COMMON_GRPC_UTIL_H
#define RAY_COMMON_GRPC_UTIL_H
#pragma once
#include <google/protobuf/map.h>
#include <google/protobuf/repeated_field.h>
@@ -121,5 +120,3 @@ inline std::unordered_map<K, V> MapFromProtobuf(::google::protobuf::Map<K, V> pb
}
} // namespace ray
#endif
+1 -3
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_ID_H_
#define RAY_ID_H_
#pragma once
#include <inttypes.h>
#include <limits.h>
@@ -494,4 +493,3 @@ DEFINE_UNIQUE_ID(ObjectID);
#undef DEFINE_UNIQUE_ID
} // namespace std
#endif // RAY_ID_H_
+1 -3
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_COMMON_NETWORK_UTIL_H
#define RAY_COMMON_NETWORK_UTIL_H
#pragma once
#include <boost/asio.hpp>
#include <boost/asio/deadline_timer.hpp>
@@ -125,4 +124,3 @@ std::string GetValidLocalIp(int port, int64_t timeout_ms);
bool Ping(const std::string &ip, int port, int64_t timeout_ms);
bool CheckFree(int port);
#endif // RAY_COMMON_NETWORK_UTIL_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CONFIG_H
#define RAY_CONFIG_H
#pragma once
#include <sstream>
#include <unordered_map>
@@ -68,5 +67,3 @@ class RayConfig {
#undef RAY_CONFIG
};
// clang-format on
#endif // RAY_CONFIG_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_COMMON_RAY_OBJECT_H
#define RAY_COMMON_RAY_OBJECT_H
#pragma once
#include "absl/types/optional.h"
#include "ray/common/buffer.h"
@@ -102,5 +101,3 @@ class RayObject {
};
} // namespace ray
#endif // RAY_COMMON_RAY_OBJECT_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_COMMON_SCHEDULING_SCHEDULING_H
#define RAY_COMMON_SCHEDULING_SCHEDULING_H
#pragma once
#include "absl/container/flat_hash_map.h"
#include "absl/container/flat_hash_set.h"
@@ -536,5 +535,3 @@ class ClusterResourceScheduler {
/// Return human-readable string for this scheduler state.
std::string DebugString() const;
};
#endif // RAY_COMMON_SCHEDULING_SCHEDULING_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_COMMON_SCHEDULING_SCHEDULING_IDS_H
#define RAY_COMMON_SCHEDULING_SCHEDULING_IDS_H
#pragma once
#include "absl/container/flat_hash_map.h"
#include "ray/util/logging.h"
@@ -66,5 +65,3 @@ class StringIdMap {
/// Get number of identifiers.
int64_t Count();
};
#endif // RAY_COMMON_SCHEDULING_SCHEDULING_IDS_H
+1 -4
View File
@@ -26,8 +26,7 @@
// Adapted from Apache Arrow, Apache Kudu, TensorFlow
#ifndef RAY_STATUS_H_
#define RAY_STATUS_H_
#pragma once
#include <cstring>
#include <iosfwd>
@@ -258,5 +257,3 @@ inline void Status::operator=(const Status &s) {
Status boost_to_ray_status(const boost::system::error_code &error);
} // namespace ray
#endif // RAY_STATUS_H_
+1 -4
View File
@@ -1,5 +1,4 @@
#ifndef RAY_COMMON_TASK_SCHEDULING_RESOURCES_H
#define RAY_COMMON_TASK_SCHEDULING_RESOURCES_H
#pragma once
#include <string>
#include <unordered_map>
@@ -546,5 +545,3 @@ struct hash<ray::ResourceSet> {
}
};
} // namespace std
#endif // RAY_COMMON_TASK_SCHEDULING_RESOURCES_H
+1 -4
View File
@@ -1,5 +1,4 @@
#ifndef RAY_COMMON_TASK_TASK_H
#define RAY_COMMON_TASK_TASK_H
#pragma once
#include <inttypes.h>
@@ -125,5 +124,3 @@ class Task {
};
} // namespace ray
#endif // RAY_COMMON_TASK_TASK_H
+1 -4
View File
@@ -1,5 +1,4 @@
#ifndef RAY_COMMON_TASK_TASK_COMMON_H
#define RAY_COMMON_TASK_TASK_COMMON_H
#pragma once
#include "ray/protobuf/common.pb.h"
@@ -16,5 +15,3 @@ using Language = rpc::Language;
using TaskType = rpc::TaskType;
} // namespace ray
#endif
+1 -4
View File
@@ -1,5 +1,4 @@
#ifndef RAY_COMMON_TASK_TASK_EXECUTION_SPEC_H
#define RAY_COMMON_TASK_TASK_EXECUTION_SPEC_H
#pragma once
#include <vector>
@@ -41,5 +40,3 @@ class TaskExecutionSpecification : public MessageWrapper<rpc::TaskExecutionSpec>
};
} // namespace ray
#endif // RAY_COMMON_TASK_TASK_EXECUTION_SPEC_H
+1 -4
View File
@@ -1,5 +1,4 @@
#ifndef RAY_COMMON_TASK_TASK_SPEC_H
#define RAY_COMMON_TASK_TASK_SPEC_H
#pragma once
#include <cstddef>
#include <string>
@@ -208,5 +207,3 @@ struct hash<ray::SchedulingClassDescriptor> {
}
};
} // namespace std
#endif // RAY_COMMON_TASK_TASK_SPEC_H
+1 -4
View File
@@ -1,5 +1,4 @@
#ifndef RAY_COMMON_TASK_TASK_UTIL_H
#define RAY_COMMON_TASK_TASK_UTIL_H
#pragma once
#include "ray/common/buffer.h"
#include "ray/common/ray_object.h"
@@ -144,5 +143,3 @@ class TaskSpecBuilder {
};
} // namespace ray
#endif // RAY_COMMON_TASK_TASK_UTIL_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_COMMON_TEST_UTIL_H
#define RAY_COMMON_TEST_UTIL_H
#pragma once
#include <unistd.h>
@@ -117,5 +116,3 @@ class TestSetupUtil {
};
} // namespace ray
#endif // RAY_UTIL_TEST_UTIL_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_ACTOR_HANDLE_H
#define RAY_CORE_WORKER_ACTOR_HANDLE_H
#pragma once
#include <gtest/gtest_prod.h>
@@ -89,5 +88,3 @@ class ActorHandle {
};
} // namespace ray
#endif // RAY_CORE_WORKER_ACTOR_HANDLE_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_ACTOR_MANAGER_H
#define RAY_CORE_WORKER_ACTOR_MANAGER_H
#pragma once
#include "ray/core_worker/actor_handle.h"
#include "ray/gcs/redis_gcs_client.h"
@@ -46,5 +45,3 @@ class ActorManager : public ActorManagerInterface {
};
} // namespace ray
#endif // RAY_CORE_WORKER_ACTOR_MANAGER_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_COMMON_H
#define RAY_CORE_WORKER_COMMON_H
#pragma once
#include <string>
@@ -156,5 +155,3 @@ struct ActorCreationOptions {
};
} // namespace ray
#endif // RAY_CORE_WORKER_COMMON_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_CONTEXT_H
#define RAY_CORE_WORKER_CONTEXT_H
#pragma once
#include <boost/thread.hpp>
@@ -96,5 +95,3 @@ class WorkerContext {
};
} // namespace ray
#endif // RAY_CORE_WORKER_CONTEXT_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_CORE_WORKER_H
#define RAY_CORE_WORKER_CORE_WORKER_H
#pragma once
#include "absl/base/optimization.h"
#include "absl/container/flat_hash_map.h"
@@ -1081,5 +1080,3 @@ class CoreWorker : public rpc::CoreWorkerServiceHandler {
};
} // namespace ray
#endif // RAY_CORE_WORKER_CORE_WORKER_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_FIBER_H
#define RAY_CORE_WORKER_FIBER_H
#pragma once
#include <ray/util/logging.h>
#include <boost/fiber/all.hpp>
@@ -142,5 +141,3 @@ class FiberState {
};
} // namespace ray
#endif // RAY_CORE_WORKER_FIBER_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_FUTURE_RESOLVER_H
#define RAY_CORE_WORKER_FUTURE_RESOLVER_H
#pragma once
#include <memory>
@@ -60,5 +59,3 @@ class FutureResolver {
};
} // namespace ray
#endif // RAY_CORE_WORKER_FUTURE_RESOLVER_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_COMMON_JAVA_JNI_UTILS_H
#define RAY_COMMON_JAVA_JNI_UTILS_H
#pragma once
#include <jni.h>
@@ -422,5 +421,3 @@ inline jobject NativeRayFunctionDescriptorToJavaStringList(
RAY_LOG(FATAL) << "Unknown function descriptor type: " << function_descriptor->Type();
return NativeStringVectorToJavaStringList(env, std::vector<std::string>());
}
#endif // RAY_COMMON_JAVA_JNI_UTILS_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_OBJECT_RECOVERY_MANAGER_H
#define RAY_CORE_WORKER_OBJECT_RECOVERY_MANAGER_H
#pragma once
#include "absl/base/thread_annotations.h"
#include "absl/synchronization/mutex.h"
@@ -147,5 +146,3 @@ class ObjectRecoveryManager {
};
} // namespace ray
#endif // RAY_CORE_WORKER_OBJECT_RECOVERY_MANAGER_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_PROFILING_H
#define RAY_CORE_WORKER_PROFILING_H
#pragma once
#include "absl/base/thread_annotations.h"
#include "absl/synchronization/mutex.h"
@@ -81,5 +80,3 @@ class ProfileEvent {
} // namespace worker
} // namespace ray
#endif // RAY_CORE_WORKER_PROFILING_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_REF_COUNT_H
#define RAY_CORE_WORKER_REF_COUNT_H
#pragma once
#include "absl/base/thread_annotations.h"
#include "absl/container/flat_hash_map.h"
@@ -628,5 +627,3 @@ class ReferenceCounter {
};
} // namespace ray
#endif // RAY_CORE_WORKER_REF_COUNT_H
@@ -1,5 +1,4 @@
#ifndef RAY_CORE_WORKER_MEMORY_STORE_H
#define RAY_CORE_WORKER_MEMORY_STORE_H
#pragma once
#include "absl/container/flat_hash_map.h"
#include "absl/container/flat_hash_set.h"
@@ -177,5 +176,3 @@ class CoreWorkerMemoryStore {
};
} // namespace ray
#endif // RAY_CORE_WORKER_MEMORY_STORE_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_PLASMA_STORE_PROVIDER_H
#define RAY_CORE_WORKER_PLASMA_STORE_PROVIDER_H
#pragma once
#include "absl/container/flat_hash_map.h"
#include "absl/container/flat_hash_set.h"
@@ -164,5 +163,3 @@ class CoreWorkerPlasmaStoreProvider {
};
} // namespace ray
#endif // RAY_CORE_WORKER_PLASMA_STORE_PROVIDER_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_TASK_MANAGER_H
#define RAY_CORE_WORKER_TASK_MANAGER_H
#pragma once
#include "absl/base/thread_annotations.h"
#include "absl/container/flat_hash_map.h"
@@ -279,5 +278,3 @@ class TaskManager : public TaskFinisherInterface, public TaskResubmissionInterfa
};
} // namespace ray
#endif // RAY_CORE_WORKER_TASK_MANAGER_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_DEPENDENCY_RESOLVER_H
#define RAY_CORE_WORKER_DEPENDENCY_RESOLVER_H
#pragma once
#include <memory>
@@ -60,5 +59,3 @@ class LocalDependencyResolver {
};
} // namespace ray
#endif // RAY_CORE_WORKER_DEPENDENCY_RESOLVER_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_DIRECT_ACTOR_TRANSPORT_H
#define RAY_CORE_WORKER_DIRECT_ACTOR_TRANSPORT_H
#pragma once
#include <boost/asio/thread_pool.hpp>
#include <boost/thread.hpp>
@@ -504,5 +503,3 @@ class CoreWorkerDirectTaskReceiver {
};
} // namespace ray
#endif // RAY_CORE_WORKER_DIRECT_ACTOR_TRANSPORT_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_DIRECT_TASK_H
#define RAY_CORE_WORKER_DIRECT_TASK_H
#pragma once
#include <google/protobuf/repeated_field.h>
@@ -203,5 +202,3 @@ class CoreWorkerDirectTaskSubmitter {
};
}; // namespace ray
#endif // RAY_CORE_WORKER_DIRECT_TASK_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CORE_WORKER_RAYLET_TRANSPORT_H
#define RAY_CORE_WORKER_RAYLET_TRANSPORT_H
#pragma once
#include <list>
@@ -60,5 +59,3 @@ class CoreWorkerRayletTaskReceiver {
};
} // namespace ray
#endif // RAY_CORE_WORKER_RAYLET_TRANSPORT_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_ACCESSOR_H
#define RAY_GCS_ACCESSOR_H
#pragma once
#include "ray/common/id.h"
#include "ray/common/task/task_spec.h"
@@ -669,5 +668,3 @@ class WorkerInfoAccessor {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_ACCESSOR_H
+1 -4
View File
@@ -32,8 +32,7 @@
// Adapted from https://github.com/ryangraham/hiredis-boostasio-adapter
// (Copyright 2018 Ryan Graham)
#ifndef RAY_GCS_ASIO_H
#define RAY_GCS_ASIO_H
#pragma once
#include <stdio.h>
#include <iostream>
@@ -92,5 +91,3 @@ extern "C" void call_C_delRead(void *private_data);
extern "C" void call_C_addWrite(void *private_data);
extern "C" void call_C_delWrite(void *private_data);
extern "C" void call_C_cleanup(void *private_data);
#endif // RAY_GCS_ASIO_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_CALLBACK_H
#define RAY_GCS_CALLBACK_H
#pragma once
#include <boost/optional/optional.hpp>
#include <unordered_map>
@@ -66,5 +65,3 @@ using MapCallback = std::function<void(const std::unordered_map<Key, Value> &res
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_CALLBACK_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_ENTRY_CHANGE_NOTIFICATION_H
#define RAY_GCS_ENTRY_CHANGE_NOTIFICATION_H
#pragma once
#include <ray/protobuf/gcs.pb.h>
#include <vector>
@@ -76,5 +75,3 @@ typedef MapNotification<std::string, rpc::ResourceTableData> ResourceChangeNotif
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_ENTRY_CHANGE_NOTIFICATION_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_GCS_CLIENT_H
#define RAY_GCS_GCS_CLIENT_H
#pragma once
#include <boost/asio.hpp>
#include <memory>
@@ -159,5 +158,3 @@ class GcsClient : public std::enable_shared_from_this<GcsClient> {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_GCS_CLIENT_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_GLOBAL_STATE_ACCESSOR_H
#define RAY_GCS_GLOBAL_STATE_ACCESSOR_H
#pragma once
#include "ray/rpc/server_call.h"
#include "service_based_gcs_client.h"
@@ -151,5 +150,3 @@ class GlobalStateAccessor {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_GLOBAL_STATE_ACCESSOR_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_SERVICE_BASED_ACCESSOR_H
#define RAY_GCS_SERVICE_BASED_ACCESSOR_H
#pragma once
#include <ray/common/task/task_spec.h>
#include "ray/gcs/accessor.h"
@@ -375,5 +374,3 @@ class ServiceBasedWorkerInfoAccessor : public WorkerInfoAccessor {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_SERVICE_BASED_ACCESSOR_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_SERVICE_BASED_GCS_CLIENT_H
#define RAY_GCS_SERVICE_BASED_GCS_CLIENT_H
#pragma once
#include "ray/gcs/pubsub/gcs_pub_sub.h"
#include "ray/gcs/redis_gcs_client.h"
@@ -56,5 +55,3 @@ class RAY_EXPORT ServiceBasedGcsClient : public GcsClient {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_SERVICE_BASED_GCS_CLIENT_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_ERROR_INFO_HANDLER_IMPL_H
#define RAY_GCS_ERROR_INFO_HANDLER_IMPL_H
#pragma once
#include "ray/gcs/redis_gcs_client.h"
#include "ray/rpc/gcs_server/gcs_rpc_server.h"
@@ -37,5 +36,3 @@ class DefaultErrorInfoHandler : public rpc::ErrorInfoHandler {
} // namespace rpc
} // namespace ray
#endif // RAY_GCS_ERROR_INFO_HANDLER_IMPL_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_ACTOR_MANAGER_H
#define RAY_GCS_ACTOR_MANAGER_H
#pragma once
#include <ray/common/id.h>
#include <ray/common/task/task_execution_spec.h>
@@ -289,5 +288,3 @@ class GcsActorManager : public rpc::ActorInfoHandler {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_ACTOR_MANAGER_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_ACTOR_SCHEDULER_H
#define RAY_GCS_ACTOR_SCHEDULER_H
#pragma once
#include <ray/common/id.h>
#include <ray/common/task/task_execution_spec.h>
@@ -264,5 +263,3 @@ class GcsActorScheduler : public GcsActorSchedulerInterface {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_ACTOR_SCHEDULER_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_NODE_MANAGER_H
#define RAY_GCS_NODE_MANAGER_H
#pragma once
#include <ray/common/id.h>
#include <ray/gcs/accessor.h>
@@ -219,5 +218,3 @@ class GcsNodeManager : public rpc::NodeInfoHandler {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_NODE_MANAGER_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_OBJECT_MANAGER_H
#define RAY_GCS_OBJECT_MANAGER_H
#pragma once
#include "gcs_node_manager.h"
#include "gcs_table_storage.h"
@@ -140,5 +139,3 @@ class GcsObjectManager : public rpc::ObjectInfoHandler {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_OBJECT_MANAGER_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_REDIS_FAILURE_DETECTOR_H
#define RAY_GCS_REDIS_FAILURE_DETECTOR_H
#pragma once
#include <boost/asio.hpp>
#include "ray/gcs/redis_context.h"
@@ -67,5 +66,3 @@ class GcsRedisFailureDetector {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_REDIS_FAILURE_DETECTOR_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_GCS_SERVER_H
#define RAY_GCS_GCS_SERVER_H
#pragma once
#include <ray/gcs/pubsub/gcs_pub_sub.h>
#include <ray/gcs/redis_gcs_client.h>
@@ -156,5 +155,3 @@ class GcsServer {
} // namespace gcs
} // namespace ray
#endif
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_GCS_TABLE_STORAGE_H_
#define RAY_GCS_GCS_TABLE_STORAGE_H_
#pragma once
#include <utility>
@@ -426,5 +425,3 @@ class InMemoryGcsTableStorage : public GcsTableStorage {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_GCS_TABLE_STORAGE_H_
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_JOB_INFO_HANDLER_IMPL_H
#define RAY_GCS_JOB_INFO_HANDLER_IMPL_H
#pragma once
#include "gcs_table_storage.h"
#include "ray/gcs/pubsub/gcs_pub_sub.h"
@@ -48,5 +47,3 @@ class DefaultJobInfoHandler : public rpc::JobInfoHandler {
} // namespace rpc
} // namespace ray
#endif // RAY_GCS_JOB_INFO_HANDLER_IMPL_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_STATS_HANDLER_IMPL_H
#define RAY_GCS_STATS_HANDLER_IMPL_H
#pragma once
#include "gcs_table_storage.h"
#include "ray/gcs/redis_gcs_client.h"
@@ -42,5 +41,3 @@ class DefaultStatsHandler : public rpc::StatsHandler {
} // namespace rpc
} // namespace ray
#endif // RAY_GCS_STATS_HANDLER_IMPL_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_TASK_INFO_HANDLER_IMPL_H
#define RAY_GCS_TASK_INFO_HANDLER_IMPL_H
#pragma once
#include "gcs_table_storage.h"
#include "ray/gcs/pubsub/gcs_pub_sub.h"
@@ -56,5 +55,3 @@ class DefaultTaskInfoHandler : public rpc::TaskInfoHandler {
} // namespace rpc
} // namespace ray
#endif // RAY_GCS_TASK_INFO_HANDLER_IMPL_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_SERVER_TEST_UTIL_H
#define RAY_GCS_SERVER_TEST_UTIL_H
#pragma once
#include <memory>
#include <utility>
@@ -317,5 +316,3 @@ struct GcsServerMocker {
};
} // namespace ray
#endif // RAY_GCS_SERVER_TEST_UTIL_H
@@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include "gtest/gtest.h"
#include "ray/common/id.h"
#include "ray/common/test_util.h"
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_WORKER_INFO_HANDLER_IMPL_H
#define RAY_GCS_WORKER_INFO_HANDLER_IMPL_H
#pragma once
#include "gcs_table_storage.h"
#include "ray/gcs/pubsub/gcs_pub_sub.h"
@@ -50,5 +49,3 @@ class DefaultWorkerInfoHandler : public rpc::WorkerInfoHandler {
} // namespace rpc
} // namespace ray
#endif // RAY_GCS_WORKER_INFO_HANDLER_IMPL_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_PB_UTIL_H
#define RAY_GCS_PB_UTIL_H
#pragma once
#include <memory>
@@ -115,5 +114,3 @@ inline std::shared_ptr<ray::rpc::ObjectLocationChange> CreateObjectLocationChang
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_PB_UTIL_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_GCS_PUB_SUB_H_
#define RAY_GCS_GCS_PUB_SUB_H_
#pragma once
#include "absl/container/flat_hash_map.h"
#include "absl/synchronization/mutex.h"
@@ -158,5 +157,3 @@ class GcsPubSub {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_GCS_PUB_SUB_H_
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_REDIS_ACCESSOR_H
#define RAY_GCS_REDIS_ACCESSOR_H
#pragma once
#include <ray/common/task/task_spec.h>
#include "ray/common/id.h"
@@ -467,5 +466,3 @@ class RedisWorkerInfoAccessor : public WorkerInfoAccessor {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_REDIS_ACCESSOR_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_REDIS_ASYNC_CONTEXT_H
#define RAY_GCS_REDIS_ASYNC_CONTEXT_H
#pragma once
#include <stdarg.h>
#include <mutex>
@@ -83,5 +82,3 @@ class RedisAsyncContext {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_REDIS_ASYNC_CONTEXT_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_REDIS_CLIENT_H
#define RAY_GCS_REDIS_CLIENT_H
#pragma once
#include <map>
#include <string>
@@ -107,5 +106,3 @@ class RedisClient {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_REDIS_CLIENT_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_REDIS_CONTEXT_H
#define RAY_GCS_REDIS_CONTEXT_H
#pragma once
#include <boost/asio.hpp>
#include <boost/bind.hpp>
@@ -366,5 +365,3 @@ std::shared_ptr<CallbackReply> RedisContext::RunSync(
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_REDIS_CONTEXT_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_REDIS_GCS_CLIENT_H
#define RAY_GCS_REDIS_GCS_CLIENT_H
#pragma once
#include <map>
#include <string>
@@ -138,5 +137,3 @@ class RAY_EXPORT RedisGcsClient : public GcsClient {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_REDIS_GCS_CLIENT_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_CHAIN_MODULE_H_
#define RAY_CHAIN_MODULE_H_
#pragma once
#include <functional>
@@ -72,5 +71,3 @@ class RedisChainModule {
int ChainReplicate(RedisModuleCtx *ctx, RedisModuleString **argv, int argc,
NodeFunc node_func, TailFunc tail_func);
};
#endif // RAY_CHAIN_MODULE_H_
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_REDIS_STRING_H_
#define RAY_REDIS_STRING_H_
#pragma once
#include <stdarg.h>
#include <stdio.h>
@@ -89,5 +88,3 @@ std::string RedisString_ToString(RedisModuleString *string) {
const char *data = RedisModule_StringPtrLen(string, &size);
return std::string(data, size);
}
#endif // RAY_REDIS_STRING_H_
+1 -3
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef REDISMODULE_H
#define REDISMODULE_H
#pragma once
#include <stdint.h>
#include <stdio.h>
@@ -415,4 +414,3 @@ static int RedisModule_Init(RedisModuleCtx *ctx, const char *name, int ver, int
#define RedisModuleString robj
#endif /* REDISMODULE_CORE */
#endif /* REDISMOUDLE_H */
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_STORE_CLIENT_IN_MEMORY_STORE_CLIENT_H
#define RAY_GCS_STORE_CLIENT_IN_MEMORY_STORE_CLIENT_H
#pragma once
#include "absl/container/flat_hash_map.h"
#include "absl/synchronization/mutex.h"
@@ -85,5 +84,3 @@ class InMemoryStoreClient : public StoreClient {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_STORE_CLIENT_IN_MEMORY_STORE_CLIENT_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_STORE_CLIENT_REDIS_STORE_CLIENT_H
#define RAY_GCS_STORE_CLIENT_REDIS_STORE_CLIENT_H
#pragma once
#include "absl/container/flat_hash_set.h"
#include "ray/gcs/redis_client.h"
@@ -139,5 +138,3 @@ class RedisStoreClient : public StoreClient {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_STORE_CLIENT_REDIS_STORE_CLIENT_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_STORE_CLIENT_STORE_CLIENT_H
#define RAY_GCS_STORE_CLIENT_STORE_CLIENT_H
#pragma once
#include <memory>
#include <string>
@@ -120,5 +119,3 @@ class StoreClient {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_STORE_CLIENT_STORE_CLIENT_H
@@ -12,6 +12,8 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#pragma once
#include <atomic>
#include <chrono>
#include <memory>
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_SUBSCRIPTION_EXECUTOR_H
#define RAY_GCS_SUBSCRIPTION_EXECUTOR_H
#pragma once
#include <atomic>
#include <list>
@@ -106,5 +105,3 @@ class SubscriptionExecutor {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_SUBSCRIPTION_EXECUTOR_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_TABLES_H
#define RAY_GCS_TABLES_H
#pragma once
#include <map>
#include <string>
@@ -1024,5 +1023,3 @@ class ClientTable : public Log<ClientID, GcsNodeInfo> {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_TABLES_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_ACCESSOR_TEST_BASE_H
#define RAY_GCS_ACCESSOR_TEST_BASE_H
#pragma once
#include <atomic>
#include <chrono>
@@ -94,5 +93,3 @@ class AccessorTestBase : public ::testing::Test {
} // namespace gcs
} // namespace ray
#endif // RAY_GCS_ACCESSOR_TEST_BASE_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_GCS_TEST_UTIL_H
#define RAY_GCS_TEST_UTIL_H
#pragma once
#include <memory>
#include <utility>
@@ -136,5 +135,3 @@ struct Mocker {
};
} // namespace ray
#endif // RAY_GCS_TEST_UTIL_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_OBJECT_MANAGER_OBJECT_BUFFER_POOL_H
#define RAY_OBJECT_MANAGER_OBJECT_BUFFER_POOL_H
#pragma once
#include <list>
#include <memory>
@@ -211,5 +210,3 @@ class ObjectBufferPool {
};
} // namespace ray
#endif // RAY_OBJECT_MANAGER_OBJECT_BUFFER_POOL_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_OBJECT_MANAGER_OBJECT_DIRECTORY_H
#define RAY_OBJECT_MANAGER_OBJECT_DIRECTORY_H
#pragma once
#include <memory>
#include <mutex>
@@ -197,5 +196,3 @@ class ObjectDirectory : public ObjectDirectoryInterface {
};
} // namespace ray
#endif // RAY_OBJECT_MANAGER_OBJECT_DIRECTORY_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_OBJECT_MANAGER_OBJECT_MANAGER_H
#define RAY_OBJECT_MANAGER_OBJECT_MANAGER_H
#pragma once
#include <algorithm>
#include <cstdint>
@@ -454,5 +453,3 @@ class ObjectManager : public ObjectManagerInterface,
};
} // namespace ray
#endif // RAY_OBJECT_MANAGER_OBJECT_MANAGER_H
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_OBJECT_MANAGER_OBJECT_STORE_CLIENT_H
#define RAY_OBJECT_MANAGER_OBJECT_STORE_CLIENT_H
#pragma once
#include <list>
#include <memory>
@@ -99,5 +98,3 @@ class ObjectStoreNotificationManager {
};
} // namespace ray
#endif // RAY_OBJECT_MANAGER_OBJECT_STORE_CLIENT_H
+1 -4
View File
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_CLIENT_H
#define PLASMA_CLIENT_H
#pragma once
#include <functional>
#include <memory>
@@ -308,5 +307,3 @@ class ARROW_EXPORT PlasmaClient {
};
} // namespace plasma
#endif // PLASMA_CLIENT_H
+1 -4
View File
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_COMMON_H
#define PLASMA_COMMON_H
#pragma once
#include <stddef.h>
@@ -123,5 +122,3 @@ typedef std::unordered_map<ObjectID, std::unique_ptr<ObjectTableEntry>> ObjectTa
struct PlasmaStoreInfo;
extern const PlasmaStoreInfo* plasma_config;
} // namespace plasma
#endif // PLASMA_COMMON_H
+1 -4
View File
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_COMPAT_H
#define PLASMA_COMPAT_H
#pragma once
// Workaround for multithreading on XCode 9, see
// https://issues.apache.org/jira/browse/ARROW-1622 and
@@ -31,5 +30,3 @@ typedef __darwin_mach_port_t mach_port_t;
mach_port_t pthread_mach_thread_np(pthread_t);
#endif /* _MACH_PORT_T */
#endif /* __APPLE__ */
#endif // PLASMA_COMPAT_H
+1 -4
View File
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_EVENTS
#define PLASMA_EVENTS
#pragma once
#include <functional>
#include <memory>
@@ -107,5 +106,3 @@ class EventLoop {
};
} // namespace plasma
#endif // PLASMA_EVENTS
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_EVICTION_POLICY_H
#define PLASMA_EVICTION_POLICY_H
#pragma once
#include <functional>
#include <list>
@@ -208,5 +207,3 @@ class EvictionPolicy {
};
} // namespace plasma
#endif // PLASMA_EVICTION_POLICY_H
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef EXTERNAL_STORE_H
#define EXTERNAL_STORE_H
#pragma once
#include <memory>
#include <string>
@@ -119,5 +118,3 @@ class ExternalStores {
store##Class singleton_##store = store##Class()
} // namespace plasma
#endif // EXTERNAL_STORE_H
+2
View File
@@ -23,6 +23,8 @@
//
// Most of the code is from https://github.com/sharvil/flingfd
#pragma once
#include <errno.h>
#include <sys/socket.h>
#include <sys/types.h>
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef HASH_TABLE_STORE_H
#define HASH_TABLE_STORE_H
#pragma once
#include <memory>
#include <string>
@@ -49,5 +48,3 @@ class HashTableStore : public ExternalStore {
};
} // namespace plasma
#endif // HASH_TABLE_STORE_H
+1 -4
View File
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_IO_H
#define PLASMA_IO_H
#pragma once
#include <inttypes.h>
#include <sys/socket.h>
@@ -65,5 +64,3 @@ int AcceptClient(int socket_fd);
std::unique_ptr<uint8_t[]> ReadMessageAsync(int sock);
} // namespace plasma
#endif // PLASMA_IO_H
+1 -4
View File
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_MALLOC_H
#define PLASMA_MALLOC_H
#pragma once
#include <inttypes.h>
#include <stddef.h>
@@ -50,5 +49,3 @@ struct MmapRecord {
extern std::unordered_map<void*, MmapRecord> mmap_records;
} // namespace plasma
#endif // PLASMA_MALLOC_H
+1 -4
View File
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_PLASMA_H
#define PLASMA_PLASMA_H
#pragma once
#include <errno.h>
#include <inttypes.h>
@@ -173,5 +172,3 @@ std::unique_ptr<uint8_t[]> CreatePlasmaNotificationBuffer(
std::vector<flatbuf::ObjectInfoT>& object_info);
} // namespace plasma
#endif // PLASMA_PLASMA_H
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_ALLOCATOR_H
#define PLASMA_ALLOCATOR_H
#pragma once
#include <cstddef>
#include <cstdint>
@@ -60,5 +59,3 @@ class PlasmaAllocator {
};
} // namespace plasma
#endif // ARROW_PLASMA_ALLOCATOR_H
+1 -4
View File
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_PROTOCOL_H
#define PLASMA_PROTOCOL_H
#pragma once
#include <memory>
#include <string>
@@ -247,5 +246,3 @@ Status SendRefreshLRUReply(int sock);
Status ReadRefreshLRUReply(uint8_t* data, size_t size);
} // namespace plasma
#endif /* PLASMA_PROTOCOL */
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_QUOTA_AWARE_POLICY_H
#define PLASMA_QUOTA_AWARE_POLICY_H
#pragma once
#include <list>
#include <memory>
@@ -87,5 +86,3 @@ class QuotaAwarePolicy : public EvictionPolicy {
};
} // namespace plasma
#endif // PLASMA_EVICTION_POLICY_H
+1 -4
View File
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_STORE_H
#define PLASMA_STORE_H
#pragma once
#include <deque>
#include <memory>
@@ -246,5 +245,3 @@ class PlasmaStore {
};
} // namespace plasma
#endif // PLASMA_STORE_H
+1 -4
View File
@@ -1,5 +1,4 @@
#ifndef PLASMA_STORE_RUNNER_H
#define PLASMA_STORE_RUNNER_H
#pragma once
#include <memory>
@@ -34,5 +33,3 @@ class PlasmaStoreRunner {
extern std::unique_ptr<PlasmaStoreRunner> plasma_store_runner;
} // namespace plasma
#endif // PLASMA_STORE_RUNNER_H
+1 -4
View File
@@ -15,8 +15,7 @@
// specific language governing permissions and limitations
// under the License.
#ifndef PLASMA_TEST_UTIL_H
#define PLASMA_TEST_UTIL_H
#pragma once
#include <algorithm>
#include <limits>
@@ -45,5 +44,3 @@ ObjectID random_object_id() {
} while (false);
} // namespace plasma
#endif // PLASMA_TEST_UTIL_H
+1 -4
View File
@@ -12,8 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.
#ifndef RAY_RAYLET_ACTOR_REGISTRATION_H
#define RAY_RAYLET_ACTOR_REGISTRATION_H
#pragma once
#include <unordered_map>
@@ -180,5 +179,3 @@ class ActorRegistration {
} // namespace raylet
} // namespace ray
#endif // RAY_RAYLET_ACTOR_REGISTRATION_H

Some files were not shown because too many files have changed in this diff Show More