We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4743d27 + 116b7dd commit e7e8370Copy full SHA for e7e8370
2 files changed
.github/workflows/main_ci_xmake.yml
@@ -32,7 +32,7 @@ jobs:
32
xmake-version: "latest"
33
34
- name: Configure
35
- run: xmake config -y --mode=${{ matrix.mode }} --vs_toolset=14
+ run: xmake config -y --mode=${{ matrix.mode }}
36
37
- name: Build
38
run: xmake build -y -vD
CommonLibF4/include/REL/Relocation.h
@@ -357,7 +357,7 @@ namespace REL
357
{
358
const auto addr = address() + (sizeof(void*) * a_idx);
359
const auto result = *reinterpret_cast<std::uintptr_t*>(addr);
360
- WriteSafe(addr, a_newFunc);
+ WriteSafeData(addr, a_newFunc);
361
return result;
362
}
363
0 commit comments