aboutsummaryrefslogtreecommitdiff
path: root/client/src/main.cpp
diff options
context:
space:
mode:
authorauth <[email protected]>2020-07-03 18:16:36 +0200
committerauth <[email protected]>2020-07-03 18:16:36 +0200
commit640961bc7a78a48061740790a704a13068cd7e29 (patch)
treeea6d547d3a97e8015f44055313f9df2c315a9e34 /client/src/main.cpp
parentStarted asmjit wrapper for easier manipulation. (diff)
downloadloader-640961bc7a78a48061740790a704a13068cd7e29.tar.xz
loader-640961bc7a78a48061740790a704a13068cd7e29.zip
Replaced std::byte by uint8_t
Diffstat (limited to 'client/src/main.cpp')
-rw-r--r--client/src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/main.cpp b/client/src/main.cpp
index f68ef6a..f0508ce 100644
--- a/client/src/main.cpp
+++ b/client/src/main.cpp
@@ -10,7 +10,7 @@ int main(int argc, char* argv[]) {
a.push({1, 2, 3, 7, 9});
a.end();
for(auto &b : a()) {
- io::logger->info("{:x}", int(b));
+ io::logger->info("{:x}", b);
}