Skip to content

Commit 517a4a8

Browse files
committed
[FIX] : replaced cstdint for stdint.h since used by C and CPP apis
1 parent ddccdd6 commit 517a4a8

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ImGuiFileDialog.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,8 @@ struct IGFD_Thumbnail_Info {
184184
};
185185
#endif // USE_THUMBNAILS
186186

187-
#include <cstdint>
187+
// stdint is used for cpp and c apî (cstdint is only for cpp)
188+
#include <stdint.h>
188189

189190
#ifdef __cplusplus
190191

0 commit comments

Comments
 (0)