We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8798040 commit 3ce76bcCopy full SHA for 3ce76bc
mlir/include/mlir/Dialect/Vector/IR/VectorOps.h
@@ -81,7 +81,7 @@ struct VectorDim {
81
struct AlignmentBytes {
82
uint64_t alignment = 0;
83
AlignmentBytes() = default;
84
- explicit AlignmentBytes(uint64_t alignment_) : alignment(alignment_){};
+ explicit AlignmentBytes(uint64_t alignment) : alignment(alignment) {};
85
operator bool() const { return 0 != alignment; }
86
};
87
0 commit comments