diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-09-25 15:57:15 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-25 12:57:15 -0700 |
| commit | dbf6abeb90ee70aeec18695f7eb589a0977ddb56 (patch) | |
| tree | 2d5b78cf6535a71b679cc7abec6d2d6d5faf1e82 /include/JSystem | |
| parent | 27507a603098d4cb88db0f6ec10b47336c092b2c (diff) | |
Use composition instead of inheritance for most f_op classes (#2700)
Diffstat (limited to 'include/JSystem')
| -rw-r--r-- | include/JSystem/JKernel/JKRThread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/JSystem/JKernel/JKRThread.h b/include/JSystem/JKernel/JKRThread.h index 83f837b585..f3e2d1b6ba 100644 --- a/include/JSystem/JKernel/JKRThread.h +++ b/include/JSystem/JKernel/JKRThread.h @@ -20,7 +20,7 @@ class JUTConsole; * @ingroup jsystem-jkernel * */ -class JKRThread : JKRDisposer { +class JKRThread : public JKRDisposer { public: class TLoad { public: |
