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 e7b827e commit bf7a826Copy full SHA for bf7a826
mlir/include/mlir/Analysis/Presburger/Fraction.h
@@ -38,7 +38,7 @@ struct Fraction {
38
}
39
40
/// Overloads for passing literals.
41
- Fraction(const MPInt &num, int64_t den = 1) : Fraction(num, MPInt(den)) {}
+ Fraction(const MPInt &num, int64_t den) : Fraction(num, MPInt(den)) {}
42
Fraction(int64_t num, const MPInt &den = MPInt(1))
43
: Fraction(MPInt(num), den) {}
44
Fraction(int64_t num, int64_t den) : Fraction(MPInt(num), MPInt(den)) {}
0 commit comments