Codefix: stdafx.h and safeguards.h should be the first and last include in every source file, and not appear in any header file.

This commit is contained in:
frosch
2025-04-20 22:06:18 +02:00
committed by frosch
parent 54de376c55
commit 461b73e21b
29 changed files with 34 additions and 16 deletions
-1
View File
@@ -10,7 +10,6 @@
#ifndef TIMER_GAME_CALENDAR_H
#define TIMER_GAME_CALENDAR_H
#include "../stdafx.h"
#include "../core/strong_typedef_type.hpp"
#include "timer_game_common.h"
-2
View File
@@ -11,8 +11,6 @@
#ifndef TIMER_MANAGER_H
#define TIMER_MANAGER_H
#include "../stdafx.h"
template <typename TTimerType>
class BaseTimer;