Skip to content

Commit

Permalink
Merge remote-tracking branch 'upstream/develop' into pr/test_fixes
Browse files Browse the repository at this point in the history
* upstream/develop:
  Add external directory to Conan recipe's exports (5006)
  Add missing includes (5011)
  • Loading branch information
ximinez committed May 7, 2024
2 parents 540713d + f650949 commit a926a2d
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def requirements(self):
self.requires('rocksdb/6.29.5')

exports_sources = (
'CMakeLists.txt', 'Builds/*', 'bin/getRippledInfo', 'src/*', 'cfg/*'
'CMakeLists.txt', 'Builds/*', 'bin/getRippledInfo', 'src/*', 'cfg/*', 'external/*'
)

def layout(self):
Expand Down
2 changes: 2 additions & 0 deletions src/ripple/conditions/impl/utils.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@
#ifndef RIPPLE_CONDITIONS_UTILS_H
#define RIPPLE_CONDITIONS_UTILS_H

#include <ripple/basics/Buffer.h>
#include <ripple/basics/Slice.h>
#include <ripple/basics/strHex.h>
#include <ripple/conditions/impl/error.h>
#include <boost/dynamic_bitset.hpp>
Expand Down
1 change: 1 addition & 0 deletions src/ripple/consensus/LedgerTrie.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
#include <ripple/basics/ToString.h>
#include <ripple/json/json_value.h>
#include <algorithm>
#include <iomanip>
#include <memory>
#include <optional>
#include <sstream>
Expand Down
2 changes: 2 additions & 0 deletions src/test/csf/Histogram.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@
#define RIPPLE_TEST_CSF_HISTOGRAM_H_INCLUDED

#include <algorithm>
#include <cassert>
#include <chrono>
#include <cmath>
#include <map>

namespace ripple {
Expand Down
1 change: 1 addition & 0 deletions src/test/csf/Tx.h
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
#include <boost/iterator/function_output_iterator.hpp>
#include <map>
#include <ostream>
#include <sstream>
#include <string>
#include <type_traits>

Expand Down
1 change: 1 addition & 0 deletions src/test/jtx/JTx.h
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#define RIPPLE_TEST_JTX_JTX_H_INCLUDED

#include <ripple/json/json_value.h>
#include <ripple/protocol/ErrorCodes.h>
#include <ripple/protocol/STTx.h>
#include <ripple/protocol/TER.h>
#include <test/jtx/basic_prop.h>
Expand Down
1 change: 1 addition & 0 deletions src/test/rpc/GRPCTestClientBase.h
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
#ifndef RIPPLED_GRPCTESTCLIENTBASE_H
#define RIPPLED_GRPCTESTCLIENTBASE_H

#include <grpcpp/grpcpp.h>
#include <org/xrpl/rpc/v1/xrp_ledger.grpc.pb.h>
#include <test/jtx/envconfig.h>

Expand Down

0 comments on commit a926a2d

Please sign in to comment.