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 b7e7d31 commit e2f072eCopy full SHA for e2f072e
subprojects/robotpy-wpimath/gen/MathUtil.yml
@@ -8,9 +8,19 @@ functions:
8
FloorDiv:
9
template_impls:
10
- [int64_t, int64_t]
11
+ # work around GCC 10 issue on raspbian
12
+ cpp_code: |
13
+ [](int64_t x, int64_t y) -> int64_t {
14
+ return frc::FloorDiv(x, y);
15
+ }
16
FloorMod:
17
18
19
20
21
22
+ return frc::FloorMod(x, y);
23
24
ApplyDeadband:
25
param_override:
26
maxMagnitude:
0 commit comments