Skip to content

Commit

Permalink
Eliminate compiler warning #45
Browse files Browse the repository at this point in the history
  • Loading branch information
moononournation committed Aug 1, 2023
1 parent 2728219 commit 0b46146
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 0 deletions.
2 changes: 2 additions & 0 deletions examples/ArduinoVNC/touch.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,6 @@ bool touch_released()
#elif defined(TOUCH_MODULE_ADDR) // TouchLib
return false;
#endif // TouchLib

return false;
}
2 changes: 2 additions & 0 deletions examples/LVGL/LvglBenchmark/touch.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,6 @@ bool touch_released()
#elif defined(TOUCH_MODULE_ADDR) // TouchLib
return false;
#endif // TouchLib

return false;
}
2 changes: 2 additions & 0 deletions examples/LVGL/LvglWidgets/touch.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,6 @@ bool touch_released()
#elif defined(TOUCH_MODULE_ADDR) // TouchLib
return false;
#endif // TouchLib

return false;
}
2 changes: 2 additions & 0 deletions examples/TouchCalibration/touch.h
Original file line number Diff line number Diff line change
Expand Up @@ -187,4 +187,6 @@ bool touch_released()
#elif defined(TOUCH_MODULE_ADDR) // TouchLib
return false;
#endif // TouchLib

return false;
}

0 comments on commit 0b46146

Please sign in to comment.