summaryrefslogtreecommitdiffhomepage
path: root/doc/cpp_style.md
diff options
context:
space:
mode:
Diffstat (limited to 'doc/cpp_style.md')
-rw-r--r--doc/cpp_style.md17
1 files changed, 0 insertions, 17 deletions
diff --git a/doc/cpp_style.md b/doc/cpp_style.md
deleted file mode 100644
index 3069285e..00000000
--- a/doc/cpp_style.md
+++ /dev/null
@@ -1,17 +0,0 @@
-# NeKernel C++ Style Guide:
-
-## The Basics:
-
-NeKernel uses the Google C++ Style. But applied to low-level systems. We use C++20 and later throughout all of our stack. As we keep iterating over time we will amend this document.
-
-## No Exceptions, Never.
-
-NeKernel bans the usage of exceptions in ne_kernel, ne_bootz, etc.
-Unless it is a program space and not to be deemed performance dependent.
-
-## Templates, Containers, and ZOA over C with Classes.
-
-NeKernel doesn't limit itself to a C++ paradigm, as we may find fitting solutions by exploring other patterns.
-That is why we have such containers like TrueResult, FalseResult, etc...
-
-