Skip to content

Commit

Permalink
caf: click_detector: Add missing includes to click_detector.h
Browse files Browse the repository at this point in the history
`click_detector.h` was missing includes for the types it uses. While this did not cause compilation errors because files that include click_detector.h already have the types included, it can cause IntelliSense warnings.

Signed-off-by: Nick Brook <[email protected]>
  • Loading branch information
nrbrook committed Dec 6, 2024
1 parent 8528b92 commit e7acaf6
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions include/caf/click_detector.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
#ifndef _CLICK_DETECTOR_H_
#define _CLICK_DETECTOR_H_

#include <stdint.h>
#include <stdbool.h>

#ifdef __cplusplus
extern "C" {
#endif
Expand Down

0 comments on commit e7acaf6

Please sign in to comment.