Skip to content

Commit c96fff7

Browse files
committed
enum type
1 parent c6d05f6 commit c96fff7

File tree

3 files changed

+2
-18
lines changed

3 files changed

+2
-18
lines changed

signatures.txt

Lines changed: 0 additions & 16 deletions
This file was deleted.

src/addresses.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
namespace jc
66
{
7-
enum Address : uintptr_t {
7+
enum Address {
88
SANITY_CHECK,
99
INST_CLOCK,
1010
INST_CHARACTER_MANAGER,

src/generator/main.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ void WriteHeader(const std::filesystem::path& path, FindPatternResult& addresses
325325
stream << "namespace jc\n";
326326
stream << "{\n";
327327

328-
stream << "enum Address : uintptr_t {\n";
328+
stream << "enum Address {\n";
329329
for (const auto& address : addresses) {
330330
stream << " " << address.first << ",\n";
331331
}

0 commit comments

Comments
 (0)