Skip to content

Commit

Permalink
Add missing includes for gcc 13.1: (#4555)
Browse files Browse the repository at this point in the history
gcc 13.1 failed to compile due to missing headers. This patch adds the
needed headers.
  • Loading branch information
seelabs authored Jun 5, 2023
1 parent f709311 commit c9a586c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/ripple/basics/StringUtilities.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,9 @@

#include <boost/format.hpp>
#include <boost/utility/string_view.hpp>

#include <array>
#include <cstdint>
#include <optional>
#include <sstream>
#include <string>
Expand Down
1 change: 1 addition & 0 deletions src/ripple/basics/base64.h
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@
#ifndef RIPPLE_BASICS_BASE64_H_INCLUDED
#define RIPPLE_BASICS_BASE64_H_INCLUDED

#include <cstdint>
#include <string>

namespace ripple {
Expand Down
2 changes: 2 additions & 0 deletions src/ripple/json/impl/json_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@

#include <ripple/basics/contract.h>
#include <ripple/json/json_reader.h>

#include <algorithm>
#include <cctype>
#include <cstdint>
#include <istream>
#include <string>

Expand Down

0 comments on commit c9a586c

Please sign in to comment.