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 19:14:28 +02:00
committed by frosch
parent 54de376c55
commit 461b73e21b
29 changed files with 34 additions and 16 deletions

View File

@@ -7,6 +7,8 @@
/** @file newgrf_profiling.cpp Profiling of NewGRF action 2 handling. */
#include "stdafx.h"
#include "newgrf_profiling.h"
#include "fileio_func.h"
#include "string_func.h"
@@ -18,6 +20,7 @@
#include <chrono>
#include "safeguards.h"
std::vector<NewGRFProfiler> _newgrf_profilers;