Skip to content

Commit

Permalink
[pre-commit.ci] pre-commit autoupdate (nv-legate#200)
Browse files Browse the repository at this point in the history
* [pre-commit.ci] pre-commit autoupdate

updates:
- [github.com/pre-commit/mirrors-clang-format: v13.0.1 → v14.0.1](pre-commit/mirrors-clang-format@v13.0.1...v14.0.1)

* [pre-commit.ci] auto fixes from pre-commit.com hooks

for more information, see https://pre-commit.ci

Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com>
  • Loading branch information
pre-commit-ci[bot] authored Apr 19, 2022
1 parent ae5140d commit 3df9164
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ repos:
hooks:
- id: flake8
- repo: https://github.com/pre-commit/mirrors-clang-format
rev: 'v13.0.1' # Use the sha / tag you want to point at
rev: 'v14.0.1' # Use the sha / tag you want to point at
hooks:
- id: clang-format
files: \.(cu|cuh|h|cc|inl)$
Expand Down
2 changes: 1 addition & 1 deletion src/core/comm/communicator.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class Communicator {
Communicator(Legion::Future future) : future_(future) {}

public:
Communicator(const Communicator&) = default;
Communicator(const Communicator&) = default;
Communicator& operator=(const Communicator&) = default;

public:
Expand Down
6 changes: 3 additions & 3 deletions src/core/data/store.h
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class RegionField {
RegionField& operator=(RegionField&& other) noexcept;

private:
RegionField(const RegionField& other) = delete;
RegionField(const RegionField& other) = delete;
RegionField& operator=(const RegionField& other) = delete;

public:
Expand Down Expand Up @@ -169,7 +169,7 @@ class OutputRegionField {
OutputRegionField& operator=(OutputRegionField&& other) noexcept;

private:
OutputRegionField(const OutputRegionField& other) = delete;
OutputRegionField(const OutputRegionField& other) = delete;
OutputRegionField& operator=(const OutputRegionField& other) = delete;

public:
Expand Down Expand Up @@ -272,7 +272,7 @@ class Store {
Store& operator=(Store&& other) noexcept;

private:
Store(const Store& other) = delete;
Store(const Store& other) = delete;
Store& operator=(const Store& other) = delete;

public:
Expand Down
2 changes: 1 addition & 1 deletion src/core/mapping/base_mapper.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ class BaseMapper : public Legion::Mapping::Mapper, public LegateMapper {
virtual ~BaseMapper(void);

private:
BaseMapper(const BaseMapper& rhs) = delete;
BaseMapper(const BaseMapper& rhs) = delete;
BaseMapper& operator=(const BaseMapper& rhs) = delete;

protected:
Expand Down
12 changes: 6 additions & 6 deletions src/core/mapping/mapping.h
Original file line number Diff line number Diff line change
Expand Up @@ -56,11 +56,11 @@ struct DimOrdering {
DimOrdering() {}

public:
DimOrdering(const DimOrdering&) = default;
DimOrdering(const DimOrdering&) = default;
DimOrdering& operator=(const DimOrdering&) = default;

public:
DimOrdering(DimOrdering&&) = default;
DimOrdering(DimOrdering&&) = default;
DimOrdering& operator=(DimOrdering&&) = default;

public:
Expand Down Expand Up @@ -97,11 +97,11 @@ struct InstanceMappingPolicy {
InstanceMappingPolicy() {}

public:
InstanceMappingPolicy(const InstanceMappingPolicy&) = default;
InstanceMappingPolicy(const InstanceMappingPolicy&) = default;
InstanceMappingPolicy& operator=(const InstanceMappingPolicy&) = default;

public:
InstanceMappingPolicy(InstanceMappingPolicy&&) = default;
InstanceMappingPolicy(InstanceMappingPolicy&&) = default;
InstanceMappingPolicy& operator=(InstanceMappingPolicy&&) = default;

public:
Expand All @@ -125,11 +125,11 @@ struct StoreMapping {
StoreMapping() {}

public:
StoreMapping(const StoreMapping&) = default;
StoreMapping(const StoreMapping&) = default;
StoreMapping& operator=(const StoreMapping&) = default;

public:
StoreMapping(StoreMapping&&) = default;
StoreMapping(StoreMapping&&) = default;
StoreMapping& operator=(StoreMapping&&) = default;

public:
Expand Down
6 changes: 3 additions & 3 deletions src/core/mapping/task.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ class RegionField {
RegionField(const Legion::Task* task, int32_t dim, uint32_t idx, Legion::FieldID fid);

public:
RegionField(const RegionField& other) = default;
RegionField(const RegionField& other) = default;
RegionField& operator=(const RegionField& other) = default;

public:
Expand Down Expand Up @@ -79,7 +79,7 @@ class FutureWrapper {
FutureWrapper(const Legion::Domain& domain);

public:
FutureWrapper(const FutureWrapper& other) = default;
FutureWrapper(const FutureWrapper& other) = default;
FutureWrapper& operator=(const FutureWrapper& other) = default;

public:
Expand Down Expand Up @@ -111,7 +111,7 @@ class Store {
std::shared_ptr<StoreTransform> transform = nullptr);

public:
Store(const Store& other) = default;
Store(const Store& other) = default;
Store& operator=(const Store& other) = default;

public:
Expand Down
4 changes: 2 additions & 2 deletions src/core/task/return.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ struct ReturnValues {
ReturnValues(std::vector<ReturnValue>&& return_values);

public:
ReturnValues(const ReturnValues&) = default;
ReturnValues(const ReturnValues&) = default;
ReturnValues& operator=(const ReturnValues&) = default;

public:
ReturnValues(ReturnValues&&) = default;
ReturnValues(ReturnValues&&) = default;
ReturnValues& operator=(ReturnValues&&) = default;

public:
Expand Down

0 comments on commit 3df9164

Please sign in to comment.