Add missing includes for gcc 13.1: (#4555)

gcc 13.1 failed to compile due to missing headers. This patch adds the
needed headers.
This commit is contained in:
Scott Determan
2023-06-05 18:50:03 -04:00
committed by GitHub
parent f709311762
commit c9a586c243
3 changed files with 5 additions and 0 deletions

View File

@@ -25,7 +25,9 @@
#include <boost/format.hpp>
#include <boost/utility/string_view.hpp>
#include <array>
#include <cstdint>
#include <optional>
#include <sstream>
#include <string>

View File

@@ -57,6 +57,7 @@
#ifndef RIPPLE_BASICS_BASE64_H_INCLUDED
#define RIPPLE_BASICS_BASE64_H_INCLUDED
#include <cstdint>
#include <string>
namespace ripple {