Skip to content

Commit 612b156

Browse files
committed
chore: Fix build w/ libstdc++13
``` In file included from cpp/src/util/logging.cpp:1: cpp/src/util/logging.h:47:36: error: unknown type name 'uint8_t' 47 | void output_hex (std::ostream &os, uint8_t const *data, size_t length); ```
1 parent 754aeae commit 612b156

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

cpp/src/util/logging.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
#pragma once
22

33
#include <array>
4+
#include <cstdint>
45
#include <ostream>
56
#include <vector>
67

0 commit comments

Comments
 (0)