Commit f99e452
authored
Fix compiler warning from useless volatile
"Cast to integral type ignores qualifier volatile"
Attempting to cast to a `volatile uint32_t` does nothing different from cast to a `uint32_t`,
with the exception of looking like it's doing something different.
Just remove the `volatile` qualifier to fix.
See also adafruit#2881 parent ed76cf5 commit f99e452
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
28 | 28 | | |
29 | 29 | | |
30 | 30 | | |
31 | | - | |
| 31 | + | |
32 | 32 | | |
33 | 33 | | |
34 | 34 | | |
| |||
0 commit comments