diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-14 01:48:03 +0100 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-14 01:48:03 +0100 |
| commit | d5571e3f9fc2c6e1d77da28f467d31e40a08be36 (patch) | |
| tree | ce14e937176c23ea393e085fedd4d5df23881581 /source | |
| parent | 15b02bcae9c97d1d67efdd1cab697caf97b890bb (diff) | |
chore: WG01 paper improvements.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
Diffstat (limited to 'source')
| -rw-r--r-- | source/wg01/wg01.tex | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source/wg01/wg01.tex b/source/wg01/wg01.tex index 022ec8e..e457285 100644 --- a/source/wg01/wg01.tex +++ b/source/wg01/wg01.tex @@ -182,10 +182,10 @@ If 2/3 of those questions fail, you should consider finding another solution to your problem. As it surely has an equivalent without the problematic aspects. -\subsection{The Vettable Pattern, validating containers for Freestanding C++.} +\subsection{The Vettable Pattern, validating containers for Kernel C++.} The following concept makes sure that the `class T' is truly vettable by the Operating System Kernel. -Such properties as called `Vettable' in NeKernel. +Such properties are called `Vettable' in a C++ kernel. \begin{lstlisting} template <class T, typename OnFallback> @@ -206,7 +206,7 @@ struct IVettable { }; \end{lstlisting} -A vettable system may look as such in a freestanding C++ system. +A vettable system may look as such in a Kernel C++ system. \begin{lstlisting} #define NE_VETTABLE final : public ::Kernel::IVettable @@ -256,7 +256,7 @@ concept IsNotVettable = requires(OnFallback fallback) { } // namespace Kernel \end{lstlisting} -Source \href{https://github.com/nekernel-org/nekernel/blob/stable/src/kernel/NeKit/Vettable.h}{https://github.com/nekernel-org/nekernel/blob/stable/src/kernel/NeKit/Vettable.h} +Source: \href{https://github.com/nekernel-org/nekernel/blob/stable/src/kernel/NeKit/Vettable.h}{https://github.com/nekernel-org/nekernel/blob/stable/src/kernel/NeKit/Vettable.h} \section{Conclusion} { |
