normalize includes: common

This commit is contained in:
brainiac
2025-12-17 09:32:44 -08:00
committed by Alex
parent 723ca13482
commit 451eb0806a
295 changed files with 1592 additions and 2009 deletions
+3 -4
View File
@@ -1,6 +1,6 @@
#ifndef CRC32_H
#define CRC32_H
#include "types.h"
#pragma once
#include "common/types.h"
class CRC32 {
public:
@@ -17,4 +17,3 @@ public:
private:
static inline void Calc(const uint8 byte, uint32& crc32);
};
#endif