This commit is contained in:
Owen Mansel-Chan
2026-06-10 22:57:08 +02:00
parent c732bd6613
commit f54debd65a
789 changed files with 4114 additions and 3807 deletions

View File

@@ -9,9 +9,9 @@ public:
char name[1000];
};
GlobalStorage *g1; // BAD
GlobalStorage *g1; // BAD // $ Alert
static GlobalStorage g2; // GOOD
static GlobalStorage *g3; // BAD
static GlobalStorage *g3; // BAD // $ Alert
// static variables are initialized by compilers
static int a; // GOOD
static int b = 0; // GOOD