Skip to content

Commit 4835f51

Browse files
committed
Use C++ cctype header in debug_dump
Replace `#include <ctype.h>` with `#include <cctype>` in `debug_dump.h` to align with C++ standard library header conventions.
1 parent 1a8e2e5 commit 4835f51

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

common/include/firmware/debug/debug_dump.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
#include <cstdint>
3030
#include <cstdio>
31-
#include <ctype.h>
31+
#include <cctype>
3232

3333
#include "firmware/debug/debug_config.h"
3434

0 commit comments

Comments
 (0)