summaryrefslogtreecommitdiff
path: root/docs/cpp-code-standards.md
diff options
context:
space:
mode:
authorKitzunu <24550914+Kitzunu@users.noreply.github.com>2021-06-18 23:32:26 +0200
committerGitHub <noreply@github.com>2021-06-18 23:32:26 +0200
commita6625101528fd9faca1f892738cfa1900a6211d1 (patch)
treef97798295b64ce634d252141e208f7df1fc6eb0b /docs/cpp-code-standards.md
parent3ac950f82c772852b242845ecdbe0ae47d5e9554 (diff)
downloadwiki-a6625101528fd9faca1f892738cfa1900a6211d1.tar.gz
wiki-a6625101528fd9faca1f892738cfa1900a6211d1.tar.bz2
wiki-a6625101528fd9faca1f892738cfa1900a6211d1.zip
chore: cpp code standards (#552)
Diffstat (limited to 'docs/cpp-code-standards.md')
-rw-r--r--docs/cpp-code-standards.md3
1 files changed, 1 insertions, 2 deletions
diff --git a/docs/cpp-code-standards.md b/docs/cpp-code-standards.md
index 15610f6..5d5128c 100644
--- a/docs/cpp-code-standards.md
+++ b/docs/cpp-code-standards.md
@@ -195,7 +195,6 @@ float posX = 234.3456f;
We define WorldObjects in this way:
```cpp
-
GameObject* go;
Creature* creature;
Item* item;
@@ -242,4 +241,4 @@ static keyword always should be put as first
```cpp
static uint32 someVar = 5;
static float const otherVar = 1.0f;
-``` \ No newline at end of file
+```