diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-08 04:01:32 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-12-08 04:01:32 -0500 |
| commit | f78c535aec66e02584e1b02995dc12c9e1bcb64c (patch) | |
| tree | 8fd8793369c30ddbfb61366407db3d464a95ad6b /docs/tex | |
| parent | 1a20507a6ecaa084b61d9b9d686d2e186b683e35 (diff) | |
| parent | e6768dc3b6c7864166211fd6e2f67ff4e5a2cbe5 (diff) | |
Merge pull request #114 from nekernel-org/new-scripts
chore: use `enum struct` instead of `enum class`.
Diffstat (limited to 'docs/tex')
| -rw-r--r-- | docs/tex/core_process_scheduler.tex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tex/core_process_scheduler.tex b/docs/tex/core_process_scheduler.tex index 5d79e5de..e48b5f5f 100644 --- a/docs/tex/core_process_scheduler.tex +++ b/docs/tex/core_process_scheduler.tex @@ -27,7 +27,7 @@ {The following sample is C++ code.} {The smaller the value, the more critical the process.} \begin{verbatim} -enum class AffinityKind : Int32 { +enum struct AffinityKind : Int32 { kRealTime = 100, kVeryHigh = 150, kHigh = 200, |
