diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-04-04 17:57:38 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-04 17:57:38 +0200 |
| commit | f085fd23cd23edfac585d326786b9a42b04da344 (patch) | |
| tree | a2ec24d6ea0a195973df790ee3825f42abc3934f | |
| parent | c1a67bfb86ce452383eddfdbe14135935f3ddcb3 (diff) | |
| parent | da49e97dc345e9d8de5f7f1640edd4a012c1ef72 (diff) | |
Merge pull request #10 from amlel-el-mahrouss/dev
cf/Foundation: Use Kernel's 'Char' type instead of std's 'char'
| -rw-r--r-- | public/frameworks/CoreFoundation.fwrk/headers/Foundation.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/public/frameworks/CoreFoundation.fwrk/headers/Foundation.h b/public/frameworks/CoreFoundation.fwrk/headers/Foundation.h index 24c995d5..15b10e06 100644 --- a/public/frameworks/CoreFoundation.fwrk/headers/Foundation.h +++ b/public/frameworks/CoreFoundation.fwrk/headers/Foundation.h @@ -18,6 +18,7 @@ namespace CF class CFGUID; class CFProperty; class CFObject; + template <typename T> class CFRef; class CFFont; @@ -36,7 +37,7 @@ namespace CF typedef SInt32 CFInteger32; typedef SInt64 CFInteger64; - typedef char CFChar8; + typedef Char CFChar8; typedef char16_t CFChar16; struct CFPoint |
