Compare commits
No commits in common. "cc4da3a4c4963a5dd008b54171ca22d148426779" and "fcdcfd10d1cb1d02431dc297ca489b2c8f335583" have entirely different histories.
cc4da3a4c4
...
fcdcfd10d1
2
deps/buildcore/scripts/util.py
vendored
2
deps/buildcore/scripts/util.py
vendored
@ -35,6 +35,4 @@ def get_arch() -> str:
|
||||
arch = platform.machine().lower()
|
||||
if arch == 'amd64':
|
||||
arch = 'x86_64'
|
||||
elif arch == 'aarch64':
|
||||
arch = 'arm64'
|
||||
return arch
|
||||
|
2
deps/ox/src/ox/std/reader.cpp
vendored
2
deps/ox/src/ox/std/reader.cpp
vendored
@ -32,7 +32,7 @@ ox::Result<char> StreamReader::peek() const noexcept {
|
||||
try {
|
||||
char c{};
|
||||
m_strm.get(c);
|
||||
auto const ok = c != static_cast<char>(EOF);
|
||||
auto const ok = c != EOF;
|
||||
if (ok && m_strm.unget()) [[unlikely]] {
|
||||
return ox::Error(1, "Unable to unget character");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user