diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-12-05 12:11:53 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-05 09:11:53 -0800 |
| commit | 8ce8d2f5411d35329dc92ef65f29e2e7167f3830 (patch) | |
| tree | 6b0b76a7e1f0f8872808459ae8f133c31ca49731 /include/JSystem/JSystem.h | |
| parent | 70d78b493339a4a823beb2ec195485be3d9abd63 (diff) | |
Add JSystem PCH to fix weak function order (#904)
* Add JSystem PCH
* Fix build issues, remove weak order fakematches, and fix functionvalue weak func order
Diffstat (limited to 'include/JSystem/JSystem.h')
| -rw-r--r-- | include/JSystem/JSystem.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/JSystem/JSystem.h b/include/JSystem/JSystem.h new file mode 100644 index 00000000..5ef19934 --- /dev/null +++ b/include/JSystem/JSystem.h @@ -0,0 +1,10 @@ +#ifndef JSYSTEM_H +#define JSYSTEM_H + +#ifdef __MWERKS__ +#include "JSystem/JSystem.mch" // IWYU pragma: export +#else +#include "JSystem/JSystem.pch" // IWYU pragma: export +#endif + +#endif /* JSYSTEM_H */ |
