SCRIPT namespace replacements

This commit is contained in:
PJ Reiniger
2025-11-07 20:00:05 -05:00
committed by Peter Johnson
parent ae6c043632
commit 9aca8e0fd6
2622 changed files with 22275 additions and 22275 deletions

View File

@@ -7,6 +7,6 @@
namespace gch {
template <typename T>
using small_vector = wpi::SmallVector<T>;
using small_vector = wpi::util::SmallVector<T>;
} // namespace gch

View File

@@ -116,7 +116,7 @@ class SLEIPNIR_DLLEXPORT Spy {
*/
void write32le(int32_t num) {
if constexpr (std::endian::native != std::endian::little) {
num = wpi::byteswap(num);
num = wpi::util::byteswap(num);
}
m_file.write(reinterpret_cast<char*>(&num), sizeof(num));
}