Skip to content

Commit 8fa3f7a

Browse files
atkassenmanaalmj
authored andcommitted
xe: microkernels: use default for trivial ctor
1 parent 483d4f6 commit 8fa3f7a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gpu/intel/microkernels/protocol.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*******************************************************************************
2-
* Copyright 2024 Intel Corporation
2+
* Copyright 2024-2025 Intel Corporation
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -118,7 +118,7 @@ struct StructuredType {
118118
enum Format { Scalar, GlobalPointer, LocalPointer, Tensor } format = Scalar;
119119
int ndims = 1;
120120

121-
StructuredType() {}
121+
StructuredType() = default;
122122
StructuredType(Type type_) : type(type_) {}
123123
StructuredType(Format format_) : format(format_) {}
124124
StructuredType(int ndims_) : format(Tensor), ndims(ndims_) {}

0 commit comments

Comments
 (0)