Skip to content

Commit

Permalink
Include stdbool.h in the c_wrapper/bindings. Go lint/vet tools (where…
Browse files Browse the repository at this point in the history
… I primary use these bindings) have gotten better and started complaining about this missing include

seems to only matter for versions older than c99, but doesn't hurt newer versions
  • Loading branch information
cmmarslender committed Aug 31, 2024
1 parent 4af4180 commit 826f7f8
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/c_bindings/c_wrapper.h
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once
#include <stdint.h>
#include <stdbool.h>

#ifdef __cplusplus
#include <cstddef> // for size_t
Expand Down

0 comments on commit 826f7f8

Please sign in to comment.