Remove stdexcept

This commit is contained in:
inspectredc
2024-12-30 19:53:17 -06:00
committed by Lywx
parent c5e1b1e774
commit 9b983c0f82
2 changed files with 1 additions and 2 deletions
-1
View File
@@ -4,7 +4,6 @@
#include "lib/binarytools/BinaryReader.h"
#include <fstream>
#include <cstring>
#include <stdexcept>
uint32_t CompTool::FindFileTable(std::vector<uint8_t>& rom) {
uint8_t query_one[] = { 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x50, 0x00, 0x00, 0x00, 0x00 };
+1 -1
View File
@@ -18,4 +18,4 @@ private:
static uint32_t FindFileTable(std::vector<uint8_t>& rom);
static std::pair<uint32_t, uint32_t> CalculateCRCs(LUS::BinaryWriter& decompFile);
static inline const uint32_t sCrcSeed = 0xF8CA4DDC;
};
};