diff --git a/AMMDeposit_8cpp_source.html b/AMMDeposit_8cpp_source.html index 6d90c72aa5..99cf660059 100644 --- a/AMMDeposit_8cpp_source.html +++ b/AMMDeposit_8cpp_source.html @@ -135,7 +135,7 @@ $(function() {
57 // tfTwoAssetIfEmpty: Amount, Amount2, [sfTradingFee]
58 // tfOnAssetLPToken: Amount and LPTokenOut
59 // tfLimitLPToken: Amount and EPrice
-
60 if (std::popcount(flags & tfDepositSubTx) != 1)
+
60 if (std::popcount(flags & tfDepositSubTx) != 1)
61 {
62 JLOG(ctx.j.debug()) << "AMM Deposit: invalid flags.";
63 return temMALFORMED;
@@ -1055,6 +1055,7 @@ $(function() {
ripple::temDISABLED
@ temDISABLED
Definition: TER.h:114
std::optional
std::pair
+
std::popcount
T popcount(T... args)
ripple::PreclaimContext
State information when determining if a tx is likely to claim a fee.
Definition: Transactor.h:79
ripple::PreclaimContext::view
ReadView const & view
Definition: Transactor.h:82
ripple::PreclaimContext::tx
STTx const & tx
Definition: Transactor.h:85
diff --git a/AMMWithdraw_8cpp_source.html b/AMMWithdraw_8cpp_source.html index 8db66561c1..b16e46bb1b 100644 --- a/AMMWithdraw_8cpp_source.html +++ b/AMMWithdraw_8cpp_source.html @@ -134,7 +134,7 @@ $(function() {
56 // Amount and Amount2
57 // Amount and LPTokens
58 // Amount and EPrice
-
59 if (std::popcount(flags & tfWithdrawSubTx) != 1)
+
59 if (std::popcount(flags & tfWithdrawSubTx) != 1)
60 {
61 JLOG(ctx.j.debug()) << "AMM Withdraw: invalid flags.";
62 return temMALFORMED;
@@ -1176,6 +1176,7 @@ $(function() {
ripple::temDISABLED
@ temDISABLED
Definition: TER.h:114
std::optional
std::pair
+
std::popcount
T popcount(T... args)
std::shared_ptr
ripple::Fees::accountReserve
XRPAmount accountReserve(std::size_t ownerCount) const
Returns the account reserve given the owner count, in drops.
Definition: protocol/Fees.h:49
ripple::PreclaimContext
State information when determining if a tx is likely to claim a fee.
Definition: Transactor.h:79
diff --git a/AMM__test_8cpp_source.html b/AMM__test_8cpp_source.html index 15a9c26ef9..3323b7f815 100644 --- a/AMM__test_8cpp_source.html +++ b/AMM__test_8cpp_source.html @@ -3444,7 +3444,7 @@ $(function() {
3370 testcase("Invalid AMM Payment");
3371 using namespace jtx;
3372 using namespace std::chrono;
-
3373 using namespace std::literals::chrono_literals;
+
3373 using namespace std::literals::chrono_literals;
3374
3375 // Can't pay into AMM account.
3376 // Can't pay out since there is no keys
@@ -7525,6 +7525,7 @@ $(function() {
ripple::temDISABLED
@ temDISABLED
Definition: TER.h:114
ripple::swapAssetOut
TIn swapAssetOut(TAmounts< TIn, TOut > const &pool, TOut const &assetOut, std::uint16_t tfee)
Swap assetOut out of the pool and swap in a proportional amount of the other asset.
Definition: AMMHelpers.h:535
std::chrono
+
std::literals::chrono_literals
std::optional
std::vector::push_back
T push_back(T... args)
std::runtime_error
diff --git a/Account_8cpp_source.html b/Account_8cpp_source.html index 41496fc16c..c784390b83 100644 --- a/Account_8cpp_source.html +++ b/Account_8cpp_source.html @@ -145,7 +145,7 @@ $(function() {
67 return generateKeyPair(type, generateSeed(name));
68 }();
69 auto r = cache_.emplace(
-
70 std::piecewise_construct,
+
70 std::piecewise_construct,
71 std::forward_as_tuple(std::move(p)),
72 std::forward_as_tuple(std::move(name), keys, privateCtorTag{}));
73 return r.first->second;
@@ -201,6 +201,7 @@ $(function() {
std::optional::has_value
T has_value(T... args)
std::optional
std::pair
+
std::piecewise_construct
T piecewise_construct
beast::uhash
Definition: uhash.h:32
ripple::test::jtx::Account::privateCtorTag
Definition: Account.h:43
std::unordered_map
diff --git a/Application_8cpp_source.html b/Application_8cpp_source.html index 193d474156..0e170211d9 100644 --- a/Application_8cpp_source.html +++ b/Application_8cpp_source.html @@ -2081,7 +2081,7 @@ $(function() {
2003 using namespace std::chrono_literals;
2004 using namespace date;
2005 static constexpr NetClock::time_point ledgerWarnTimePoint{
-
2006 sys_days{January / 1 / 2018} - sys_days{January / 1 / 2000}};
+
2006 sys_days{January / 1 / 2018} - sys_days{January / 1 / 2000}};
2007 if (loadLedger->info().closeTime < ledgerWarnTimePoint)
2008 {
2009 JLOG(m_journal.fatal())
@@ -2605,6 +2605,7 @@ $(function() {
ripple::RPC::JsonContext
Definition: Context.h:53
ripple::ServerHandler::Setup::makeContexts
void makeContexts()
Definition: ServerHandler.cpp:1079
ripple::test::jtx::seq
Set the sequence number on a JTx.
Definition: seq.h:34
+
std::chrono::sys_days
std::chrono::time_point
std::to_string
T to_string(T... args)
std::unique_lock
diff --git a/BasicConfig_8cpp_source.html b/BasicConfig_8cpp_source.html index 8953a48b65..addae70c46 100644 --- a/BasicConfig_8cpp_source.html +++ b/BasicConfig_8cpp_source.html @@ -233,7 +233,7 @@ $(function() {
155 std::string const& value)
156{
157 auto const result = map_.emplace(
-
158 std::piecewise_construct,
+
158 std::piecewise_construct,
159 std::make_tuple(section),
160 std::make_tuple(section));
161 result.first->second.set(key, value);
@@ -265,7 +265,7 @@ $(function() {
187 for (auto const& entry : ifs)
188 {
189 auto const result = map_.emplace(
-
190 std::piecewise_construct,
+
190 std::piecewise_construct,
191 std::make_tuple(entry.first),
192 std::make_tuple(entry.first));
193 result.first->second.append(entry.second);
@@ -313,6 +313,7 @@ $(function() {
ripple::operator<<
std::ostream & operator<<(std::ostream &out, base_uint< Bits, Tag > const &u)
Definition: base_uint.h:637
ripple::AttestationMatch::match
@ match
ostream
+
std::piecewise_construct
T piecewise_construct
std::vector::push_back
T push_back(T... args)
std::vector::reserve
T reserve(T... args)
std::vector::size
T size(T... args)
diff --git a/Batch_8cpp_source.html b/Batch_8cpp_source.html index 0fce185f8f..8393087371 100644 --- a/Batch_8cpp_source.html +++ b/Batch_8cpp_source.html @@ -222,7 +222,7 @@ $(function() {
197 return temINVALID_FLAG;
198 }
199
-
200 if (std::popcount(
+
200 if (std::popcount(
201 flags &
202 (tfAllOrNothing | tfOnlyOne | tfUntilFailure | tfIndependent)) != 1)
203 {
@@ -549,6 +549,7 @@ $(function() {
ripple::temDISABLED
@ temDISABLED
Definition: TER.h:114
ripple::temBAD_SIGNATURE
@ temBAD_SIGNATURE
Definition: TER.h:105
std::overflow_error
+
std::popcount
T popcount(T... args)
ripple::Fees::base
XRPAmount base
Definition: protocol/Fees.h:34
ripple::PreclaimContext
State information when determining if a tx is likely to claim a fee.
Definition: Transactor.h:79
ripple::PreflightContext
State information when preflighting a tx.
Definition: Transactor.h:34
diff --git a/Batch__test_8cpp_source.html b/Batch__test_8cpp_source.html index 635c3b36dc..d18320128e 100644 --- a/Batch__test_8cpp_source.html +++ b/Batch__test_8cpp_source.html @@ -246,7 +246,7 @@ $(function() {
168 testcase("enabled");
169
170 using namespace test::jtx;
-
171 using namespace std::literals;
+
171 using namespace std::literals;
172
173 for (bool const withBatch : {true, false})
174 {
@@ -295,7 +295,7 @@ $(function() {
217 testcase("preflight");
218
219 using namespace test::jtx;
-
220 using namespace std::literals;
+
220 using namespace std::literals;
221
222 //----------------------------------------------------------------------
223 // preflight
@@ -674,7 +674,7 @@ $(function() {
596 testcase("preclaim");
597
598 using namespace test::jtx;
-
599 using namespace std::literals;
+
599 using namespace std::literals;
600
601 //----------------------------------------------------------------------
602 // preclaim
@@ -918,7 +918,7 @@ $(function() {
840 testcase("bad raw txn");
841
842 using namespace test::jtx;
-
843 using namespace std::literals;
+
843 using namespace std::literals;
844
845 test::jtx::Env env{*this, envconfig()};
846
@@ -1009,7 +1009,7 @@ $(function() {
931 testcase("bad sequence");
932
933 using namespace test::jtx;
-
934 using namespace std::literals;
+
934 using namespace std::literals;
935
936 test::jtx::Env env{*this, envconfig()};
937
@@ -1245,7 +1245,7 @@ $(function() {
1167 testcase("bad outer fee");
1168
1169 using namespace test::jtx;
-
1170 using namespace std::literals;
+
1170 using namespace std::literals;
1171
1172 // Bad Fee Without Signer
1173 {
@@ -1419,7 +1419,7 @@ $(function() {
1341 testcase("calculate base fee");
1342
1343 using namespace test::jtx;
-
1344 using namespace std::literals;
+
1344 using namespace std::literals;
1345
1346 // telENV_RPC_FAILED: Batch: txns array exceeds 8 entries.
1347 {
@@ -1532,7 +1532,7 @@ $(function() {
1454 testcase("all or nothing");
1455
1456 using namespace test::jtx;
-
1457 using namespace std::literals;
+
1457 using namespace std::literals;
1458
1459 test::jtx::Env env{*this, envconfig()};
1460
@@ -1668,7 +1668,7 @@ $(function() {
1590 testcase("only one");
1591
1592 using namespace test::jtx;
-
1593 using namespace std::literals;
+
1593 using namespace std::literals;
1594
1595 test::jtx::Env env{*this, envconfig()};
1596
@@ -1900,7 +1900,7 @@ $(function() {
1822 testcase("until failure");
1823
1824 using namespace test::jtx;
-
1825 using namespace std::literals;
+
1825 using namespace std::literals;
1826
1827 test::jtx::Env env{*this, envconfig()};
1828
@@ -2122,7 +2122,7 @@ $(function() {
2044 testcase("independent");
2045
2046 using namespace test::jtx;
-
2047 using namespace std::literals;
+
2047 using namespace std::literals;
2048
2049 test::jtx::Env env{*this, envconfig()};
2050
@@ -2315,7 +2315,7 @@ $(function() {
2237 testcase("inner submit rpc");
2238
2239 using namespace test::jtx;
-
2240 using namespace std::literals;
+
2240 using namespace std::literals;
2241
2242 test::jtx::Env env{*this, envconfig()};
2243
@@ -2325,8 +2325,8 @@ $(function() {
2247 env.fund(XRP(10000), alice, bob);
2248 env.close();
2249
-
2250 auto submitAndValidate = [&](Slice const& slice) {
-
2251 auto const jrr = env.rpc("submit", strHex(slice))[jss::result];
+
2250 auto submitAndValidate = [&](Slice const& slice) {
+
2251 auto const jrr = env.rpc("submit", strHex(slice))[jss::result];
2252 BEAST_EXPECT(
2253 jrr[jss::status] == "error" &&
2254 jrr[jss::error] == "invalidTransaction" &&
@@ -2403,7 +2403,7 @@ $(function() {
2325 testcase("account activation");
2326
2327 using namespace test::jtx;
-
2328 using namespace std::literals;
+
2328 using namespace std::literals;
2329
2330 test::jtx::Env env{*this, envconfig()};
2331
@@ -2450,7 +2450,7 @@ $(function() {
2372 testcase("account set");
2373
2374 using namespace test::jtx;
-
2375 using namespace std::literals;
+
2375 using namespace std::literals;
2376
2377 test::jtx::Env env{*this, envconfig()};
2378
@@ -2501,7 +2501,7 @@ $(function() {
2423 testcase("account delete");
2424
2425 using namespace test::jtx;
-
2426 using namespace std::literals;
+
2426 using namespace std::literals;
2427
2428 // tfIndependent: account delete success
2429 {
@@ -2635,7 +2635,7 @@ $(function() {
2557 testcase("object create w/ sequence");
2558
2559 using namespace test::jtx;
-
2560 using namespace std::literals;
+
2560 using namespace std::literals;
2561
2562 test::jtx::Env env{*this, envconfig()};
2563
@@ -2748,7 +2748,7 @@ $(function() {
2670 testcase("object create w/ ticket");
2671
2672 using namespace test::jtx;
-
2673 using namespace std::literals;
+
2673 using namespace std::literals;
2674
2675 test::jtx::Env env{*this, envconfig()};
2676
@@ -2806,7 +2806,7 @@ $(function() {
2728 testcase("object create w/ 3rd party");
2729
2730 using namespace test::jtx;
-
2731 using namespace std::literals;
+
2731 using namespace std::literals;
2732
2733 test::jtx::Env env{*this, envconfig()};
2734
@@ -2868,7 +2868,7 @@ $(function() {
2790 testcase("tickets outer");
2791
2792 using namespace test::jtx;
-
2793 using namespace std::literals;
+
2793 using namespace std::literals;
2794
2795 test::jtx::Env env{*this, envconfig()};
2796
@@ -2917,7 +2917,7 @@ $(function() {
2839 testcase("tickets inner");
2840
2841 using namespace test::jtx;
-
2842 using namespace std::literals;
+
2842 using namespace std::literals;
2843
2844 test::jtx::Env env{*this, envconfig()};
2845
@@ -2965,7 +2965,7 @@ $(function() {
2887 testcase("tickets outer inner");
2888
2889 using namespace test::jtx;
-
2890 using namespace std::literals;
+
2890 using namespace std::literals;
2891
2892 test::jtx::Env env{*this, envconfig()};
2893
@@ -3017,7 +3017,7 @@ $(function() {
2939 testcase("sequence open ledger");
2940
2941 using namespace test::jtx;
-
2942 using namespace std::literals;
+
2942 using namespace std::literals;
2943
2944 auto const alice = Account("alice");
2945 auto const bob = Account("bob");
@@ -3204,7 +3204,7 @@ $(function() {
3126 testcase("tickets open ledger");
3127
3128 using namespace test::jtx;
-
3129 using namespace std::literals;
+
3129 using namespace std::literals;
3130
3131 auto const alice = Account("alice");
3132 auto const bob = Account("bob");
@@ -3313,7 +3313,7 @@ $(function() {
3235 testcase("objects open ledger");
3236
3237 using namespace test::jtx;
-
3238 using namespace std::literals;
+
3238 using namespace std::literals;
3239
3240 auto const alice = Account("alice");
3241 auto const bob = Account("bob");
@@ -3464,7 +3464,7 @@ $(function() {
3386 testcase("pseudo txn with tfInnerBatchTxn");
3387
3388 using namespace test::jtx;
-
3389 using namespace std::literals;
+
3389 using namespace std::literals;
3390
3391 test::jtx::Env env{*this, envconfig()};
3392
@@ -3503,7 +3503,7 @@ $(function() {
3425 // though the payment was submitted after the batch.
3426
3427 using namespace test::jtx;
-
3428 using namespace std::literals;
+
3428 using namespace std::literals;
3429
3430 test::jtx::Env env{*this, envconfig()};
3431 XRPAmount const baseFee = env.current()->fees().base;
@@ -3578,7 +3578,7 @@ $(function() {
3500 testcase("batch tx queue");
3501
3502 using namespace test::jtx;
-
3503 using namespace std::literals;
+
3503 using namespace std::literals;
3504
3505 // only outer batch transactions are counter towards the queue size
3506 {
@@ -3690,7 +3690,7 @@ $(function() {
3612 testcase("batch network ops");
3613
3614 using namespace test::jtx;
-
3615 using namespace std::literals;
+
3615 using namespace std::literals;
3616
3617 Env env(
3618 *this,
@@ -3745,7 +3745,7 @@ $(function() {
3667 testcase("batch delegate");
3668
3669 using namespace test::jtx;
-
3670 using namespace std::literals;
+
3670 using namespace std::literals;
3671
3672 // delegated non atomic inner
3673 {
@@ -4097,10 +4097,12 @@ $(function() {
ripple::temARRAY_TOO_LARGE
@ temARRAY_TOO_LARGE
Definition: TER.h:141
ripple::temDISABLED
@ temDISABLED
Definition: TER.h:114
ripple::temBAD_SIGNATURE
@ temBAD_SIGNATURE
Definition: TER.h:105
+
std::literals
std::optional
std::pair
std::vector::push_back
T push_back(T... args)
std::vector::size
T size(T... args)
+
std::slice
ripple::JsonOptions::none
@ none
Definition: STBase.h:44
ripple::Keylet::key
uint256 key
Definition: Keylet.h:40
ripple::test::Batch_test::TestBatchData
Definition: Batch_test.cpp:50
diff --git a/Change_8cpp_source.html b/Change_8cpp_source.html index 14dde9e381..bd2d0bbe46 100644 --- a/Change_8cpp_source.html +++ b/Change_8cpp_source.html @@ -304,7 +304,7 @@ $(function() {
226 return true;
227 };
228
-
229 using namespace std::literals;
+
229 using namespace std::literals;
230
231 Sandbox sb(&view());
232
@@ -434,14 +434,14 @@ $(function() {
356 feeObject = std::make_shared<SLE>(k);
357 view().insert(feeObject);
358 }
-
359 auto set = [](SLE::pointer& feeObject, STTx const& tx, auto const& field) {
+
359 auto set = [](SLE::pointer& feeObject, STTx const& tx, auto const& field) {
360 feeObject->at(field) = tx[field];
361 };
362 if (view().rules().enabled(featureXRPFees))
363 {
-
364 set(feeObject, ctx_.tx, sfBaseFeeDrops);
-
365 set(feeObject, ctx_.tx, sfReserveBaseDrops);
-
366 set(feeObject, ctx_.tx, sfReserveIncrementDrops);
+
364 set(feeObject, ctx_.tx, sfBaseFeeDrops);
+
365 set(feeObject, ctx_.tx, sfReserveBaseDrops);
+
366 set(feeObject, ctx_.tx, sfReserveIncrementDrops);
367 // Ensure the old fields are removed
368 feeObject->makeFieldAbsent(sfBaseFee);
369 feeObject->makeFieldAbsent(sfReferenceFeeUnits);
@@ -450,10 +450,10 @@ $(function() {
372 }
373 else
374 {
-
375 set(feeObject, ctx_.tx, sfBaseFee);
-
376 set(feeObject, ctx_.tx, sfReferenceFeeUnits);
-
377 set(feeObject, ctx_.tx, sfReserveBase);
-
378 set(feeObject, ctx_.tx, sfReserveIncrement);
+
375 set(feeObject, ctx_.tx, sfBaseFee);
+
376 set(feeObject, ctx_.tx, sfReferenceFeeUnits);
+
377 set(feeObject, ctx_.tx, sfReserveBase);
+
378 set(feeObject, ctx_.tx, sfReserveIncrement);
379 }
380
381 view().update(feeObject);
@@ -664,7 +664,6 @@ $(function() {
ripple::tfGotMajority
constexpr std::uint32_t tfGotMajority
Definition: TxFlags.h:133
ripple::lsfHighReserve
@ lsfHighReserve
Definition: LedgerFormats.h:158
ripple::lsfLowReserve
@ lsfLowReserve
Definition: LedgerFormats.h:157
-
ripple::set
bool set(T &target, std::string const &name, Section const &section)
Set a value from a configuration Section If the named value is not found or doesn't parse as a T,...
Definition: BasicConfig.h:315
ripple::tefFAILURE
@ tefFAILURE
Definition: TER.h:166
ripple::tefALREADY
@ tefALREADY
Definition: TER.h:167
ripple::publicKeyType
std::optional< KeyType > publicKeyType(Slice const &slice)
Returns the type of public key.
Definition: PublicKey.cpp:223
@@ -685,6 +684,8 @@ $(function() {
ripple::temINVALID_FLAG
@ temINVALID_FLAG
Definition: TER.h:111
ripple::temDISABLED
@ temDISABLED
Definition: TER.h:114
ripple::temBAD_SIGNATURE
@ temBAD_SIGNATURE
Definition: TER.h:105
+
std::literals
+
std::set
std::shared_ptr< STLedgerEntry >
string_view
ripple::Keylet::key
uint256 key
Definition: Keylet.h:40
diff --git a/Consensus_8h_source.html b/Consensus_8h_source.html index 607d328969..729acb14bd 100644 --- a/Consensus_8h_source.html +++ b/Consensus_8h_source.html @@ -1408,7 +1408,7 @@ $(function() {
1714 ConsensusParms const& parms = adaptor_.parms();
1715 // Stalling is BAD
1716 bool const stalled = haveCloseTimeConsensus_ &&
-
1717 std::ranges::all_of(result_->disputes,
+
1717 std::ranges::all_of(result_->disputes,
1718 [this, &parms](auto const& dispute) {
1719 return dispute.second.stalled(
1720 parms,
@@ -1598,6 +1598,7 @@ $(function() {
1904
1905#endif
algorithm
+
std::ranges::all_of
T all_of(T... args)
std::stringstream
std::map::begin
T begin(T... args)
chrono
diff --git a/DepositAuth__test_8cpp_source.html b/DepositAuth__test_8cpp_source.html index 89a4cd0912..ed51955ca2 100644 --- a/DepositAuth__test_8cpp_source.html +++ b/DepositAuth__test_8cpp_source.html @@ -1546,7 +1546,7 @@ $(function() {
1468 // check sorting in object
1469 for (int i = 0; i < 10; ++i)
1470 {
-
1471 std::ranges::shuffle(credentials, gen);
+
1471 std::ranges::shuffle(credentials, gen);
1472 env(deposit::authCredentials(stock, credentials));
1473 env.close();
1474
@@ -1569,7 +1569,7 @@ $(function() {
1491 c["CredentialType"].asString());
1492 }
1493
-
1494 BEAST_EXPECT(std::ranges::is_sorted(readedCreds));
+
1494 BEAST_EXPECT(std::ranges::is_sorted(readedCreds));
1495
1496 env(deposit::unauthCredentials(stock, credentials));
1497 env.close();
@@ -1577,14 +1577,14 @@ $(function() {
1499 }
1500
1501 {
-
1502 std::ranges::shuffle(credentials, gen);
+
1502 std::ranges::shuffle(credentials, gen);
1503 env(deposit::authCredentials(stock, credentials));
1504 env.close();
1505
1506 // check sorting in params
1507 for (int i = 0; i < 10; ++i)
1508 {
-
1509 std::ranges::shuffle(credentials, gen);
+
1509 std::ranges::shuffle(credentials, gen);
1510 env(deposit::authCredentials(stock, credentials),
1511 ter(tecDUPLICATE));
1512 }
@@ -1596,7 +1596,7 @@ $(function() {
1518 std::vector<deposit::AuthorizeCredentials> copyCredentials(
1519 credentials.begin(), credentials.end() - 1);
1520
-
1521 std::ranges::shuffle(copyCredentials, gen);
+
1521 std::ranges::shuffle(copyCredentials, gen);
1522 for (auto const& c : copyCredentials)
1523 {
1524 auto credentials2 = copyCredentials;
@@ -1705,6 +1705,7 @@ $(function() {
std::unordered_map::emplace
T emplace(T... args)
std::vector::end
T end(T... args)
std::uint32_t
+
std::ranges::is_sorted
T is_sorted(T... args)
std::mt19937
Json::arrayValue
@ arrayValue
array value (ordered list)
Definition: json_value.h:45
Json::objectValue
@ objectValue
object value (collection of name/value pairs).
Definition: json_value.h:46
@@ -1767,6 +1768,7 @@ $(function() {
std::chrono
std::vector::push_back
T push_back(T... args)
std::random_device
+
std::ranges::shuffle
T shuffle(T... args)
ripple::test::DepositAuth_test
Definition: DepositAuth_test.cpp:45
ripple::test::DepositAuth_test::testNoRipple
void testNoRipple()
Definition: DepositAuth_test.cpp:283
ripple::test::DepositAuth_test::testPayIOU
void testPayIOU()
Definition: DepositAuth_test.cpp:84
diff --git a/IPEndpoint__test_8cpp_source.html b/IPEndpoint__test_8cpp_source.html index 92d837866f..daf9187cb3 100644 --- a/IPEndpoint__test_8cpp_source.html +++ b/IPEndpoint__test_8cpp_source.html @@ -492,7 +492,7 @@ $(function() {
414 void
415 shouldPass(std::string const& text, std::string const& normal = "")
416 {
-
417 using namespace std::literals;
+
417 using namespace std::literals;
418 T t;
419 BEAST_EXPECT(parse(text, t));
420 BEAST_EXPECTS(
@@ -601,6 +601,7 @@ $(function() {
beast::IP::to_string
std::string to_string(Address const &addr)
Returns the address represented as a string.
Definition: IPAddress.h:47
beast
Definition: base_uint.h:662
ripple::rand_int
std::enable_if_t< std::is_integral< Integral >::value, Integral > rand_int()
Definition: include/xrpl/basics/random.h:159
+
std::literals
std::unordered_set
diff --git a/IntrusiveShared__test_8cpp_source.html b/IntrusiveShared__test_8cpp_source.html index b5434cd52e..549fd4fe74 100644 --- a/IntrusiveShared__test_8cpp_source.html +++ b/IntrusiveShared__test_8cpp_source.html @@ -442,7 +442,7 @@ $(function() {
386 WeakIntrusive<TIBase> weak{strong};
387 bool destructorRan = false;
388 bool partialDeleteRan = false;
-
389 std::latch partialDeleteStartedSyncPoint{2};
+
389 std::latch partialDeleteStartedSyncPoint{2};
390 strong->tracingCallback_ = [&](TrackedState cur,
391 std::optional<TrackedState> next) {
392 using enum TrackedState;
@@ -510,7 +510,7 @@ $(function() {
454 WeakIntrusive<TIBase> weak{strong};
455 bool destructorRan = false;
456 bool partialDeleteRan = false;
-
457 std::latch weakResetSyncPoint{2};
+
457 std::latch weakResetSyncPoint{2};
458 strong->tracingCallback_ = [&](TrackedState cur,
459 std::optional<TrackedState> next) {
460 using enum TrackedState;
@@ -977,6 +977,7 @@ $(function() {
std::function
std::uint8_t
std::thread::join
T join(T... args)
+
std::latch
std::mutex
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: algorithm.h:26
ripple::ReleaseWeakRefAction::destroy
@ destroy
diff --git a/JobQueue_8cpp_source.html b/JobQueue_8cpp_source.html index 5ef91ab1ae..55f7d0d2d6 100644 --- a/JobQueue_8cpp_source.html +++ b/JobQueue_8cpp_source.html @@ -132,7 +132,7 @@ $(function() {
54
55 // And create dynamic information for all jobs
56 auto const result(m_jobData.emplace(
-
57 std::piecewise_construct,
+
57 std::piecewise_construct,
58 std::forward_as_tuple(jt.type()),
59 std::forward_as_tuple(jt, m_collector, logs)));
60 XRPL_ASSERT(
@@ -614,6 +614,7 @@ $(function() {
std::chrono
std::condition_variable::notify_all
T notify_all(T... args)
std::chrono::steady_clock::now
T now(T... args)
+
std::piecewise_construct
T piecewise_construct
std::set
std::shared_ptr< Collector >
ripple::JobTypeData
Definition: JobTypeData.h:31
diff --git a/JobTypes_8h_source.html b/JobTypes_8h_source.html index c9213658f0..6592a6db7e 100644 --- a/JobTypes_8h_source.html +++ b/JobTypes_8h_source.html @@ -137,7 +137,7 @@ $(function() {
59 [[maybe_unused]] auto const inserted =
60 m_map
61 .emplace(
-
62 std::piecewise_construct,
+
62 std::piecewise_construct,
63 std::forward_as_tuple(jt),
64 std::forward_as_tuple(
65 jt, name, limit, avgLatency, peakLatency))
@@ -346,6 +346,7 @@ $(function() {
ripple::jtDISK
@ jtDISK
Definition: Job.h:81
ripple::jtPROPOSAL_t
@ jtPROPOSAL_t
Definition: Job.h:74
std
STL namespace.
+
std::piecewise_construct
T piecewise_construct
std::map::size
T size(T... args)
string
diff --git a/LedgerEntry__test_8cpp_source.html b/LedgerEntry__test_8cpp_source.html index 3053646cc4..3bb75c9b22 100644 --- a/LedgerEntry__test_8cpp_source.html +++ b/LedgerEntry__test_8cpp_source.html @@ -1508,7 +1508,7 @@ $(function() {
1430 {
1431 testcase("ledger_entry Request Pay Chan");
1432 using namespace test::jtx;
-
1433 using namespace std::literals::chrono_literals;
+
1433 using namespace std::literals::chrono_literals;
1434 Env env{*this};
1435 Account const alice{"alice"};
1436
@@ -1862,7 +1862,7 @@ $(function() {
1784 {
1785 testcase("ledger_entry Request DID");
1786 using namespace test::jtx;
-
1787 using namespace std::literals::chrono_literals;
+
1787 using namespace std::literals::chrono_literals;
1788 Env env{*this};
1789 Account const alice{"alice"};
1790
@@ -2224,7 +2224,7 @@ $(function() {
2146 {
2147 testcase("ledger_entry Request MPT");
2148 using namespace test::jtx;
-
2149 using namespace std::literals::chrono_literals;
+
2149 using namespace std::literals::chrono_literals;
2150 Env env{*this};
2151 Account const alice{"alice"};
2152 Account const bob("bob");
@@ -2904,6 +2904,7 @@ $(function() {
ripple::tfMPTRequireAuth
constexpr std::uint32_t const tfMPTRequireAuth
Definition: TxFlags.h:151
ripple::tfMPTCanLock
constexpr std::uint32_t const tfMPTCanLock
Definition: TxFlags.h:150
ripple::tfMPTCanClawback
constexpr std::uint32_t const tfMPTCanClawback
Definition: TxFlags.h:155
+
std::literals::chrono_literals
std::optional
std::vector::push_back
T push_back(T... args)
std::string::replace
T replace(T... args)
diff --git a/LedgerMaster_8cpp_source.html b/LedgerMaster_8cpp_source.html index b36d5ca7ad..52a1ad9c47 100644 --- a/LedgerMaster_8cpp_source.html +++ b/LedgerMaster_8cpp_source.html @@ -2278,9 +2278,9 @@ $(function() {
2240std::optional<uint256>
2241LedgerMaster::txnIdFromIndex(uint32_t ledgerSeq, uint32_t txnIndex)
2242{
-
2243 uint32_t first = 0, last = 0;
+
2243 uint32_t first = 0, last = 0;
2244
-
2245 if (!getValidatedRange(first, last) || last < ledgerSeq)
+
2245 if (!getValidatedRange(first, last) || last < ledgerSeq)
2246 return {};
2247
2248 auto const lgr = getLedgerBySeq(ledgerSeq);
@@ -2543,6 +2543,7 @@ $(function() {
std::map::find
T find(T... args)
std::hash
std::uint32_t
+
std::chrono::last
std::atomic::load
T load(T... args)
std::lock_guard
std::weak_ptr::lock
T lock(T... args)
diff --git a/LedgerMaster__test_8cpp_source.html b/LedgerMaster__test_8cpp_source.html index 5d3e1b3f71..dd87acff4a 100644 --- a/LedgerMaster__test_8cpp_source.html +++ b/LedgerMaster__test_8cpp_source.html @@ -123,7 +123,7 @@ $(function() {
45 testcase("tx_id_from_index");
46
47 using namespace test::jtx;
-
48 using namespace std::literals;
+
48 using namespace std::literals;
49
50 test::jtx::Env env{*this, makeNetworkConfig(11111)};
51
@@ -157,7 +157,7 @@ $(function() {
79 }
80 // test not in ledger
81 {
-
82 uint32_t txnIndex = metas[0]->getFieldU32(sfTransactionIndex);
+
82 uint32_t txnIndex = metas[0]->getFieldU32(sfTransactionIndex);
83 auto result =
84 env.app().getLedgerMaster().txnIdFromIndex(0, txnIndex);
85 BEAST_EXPECT(!result);
@@ -170,14 +170,14 @@ $(function() {
92 }
93 // ended without result
94 {
-
95 uint32_t txnIndex = metas[0]->getFieldU32(sfTransactionIndex);
+
95 uint32_t txnIndex = metas[0]->getFieldU32(sfTransactionIndex);
96 auto result = env.app().getLedgerMaster().txnIdFromIndex(
97 endLegSeq + 1, txnIndex);
98 BEAST_EXPECT(!result);
99 }
100 // success (first tx)
101 {
-
102 uint32_t txnIndex = metas[0]->getFieldU32(sfTransactionIndex);
+
102 uint32_t txnIndex = metas[0]->getFieldU32(sfTransactionIndex);
103 auto result = env.app().getLedgerMaster().txnIdFromIndex(
104 startLegSeq, txnIndex);
105 BEAST_EXPECT(
@@ -187,7 +187,7 @@ $(function() {
109 }
110 // success (second tx)
111 {
-
112 uint32_t txnIndex = metas[1]->getFieldU32(sfTransactionIndex);
+
112 uint32_t txnIndex = metas[1]->getFieldU32(sfTransactionIndex);
113 auto result = env.app().getLedgerMaster().txnIdFromIndex(
114 startLegSeq + 1, txnIndex);
115 BEAST_EXPECT(
@@ -237,6 +237,7 @@ $(function() {
ripple::uint256
base_uint< 256 > uint256
Definition: base_uint.h:558
ripple::TxSearched::all
@ all
ripple::ReleaseStrongRefAction::noop
@ noop
+
std::literals
std::unique_ptr
std::vector
diff --git a/MemoryFactory_8cpp_source.html b/MemoryFactory_8cpp_source.html index 4cfde72d33..011337e52f 100644 --- a/MemoryFactory_8cpp_source.html +++ b/MemoryFactory_8cpp_source.html @@ -145,7 +145,7 @@ $(function() {
67 {
68 std::lock_guard _(mutex_);
69 auto const result = map_.emplace(
-
70 std::piecewise_construct, std::make_tuple(path), std::make_tuple());
+
70 std::piecewise_construct, std::make_tuple(path), std::make_tuple());
71 MemoryDB& db = result.first->second;
72 if (db.open)
73 Throw<std::runtime_error>("already open");
@@ -381,6 +381,7 @@ $(function() {
ripple::get
T get(Section const &section, std::string const &name, T const &defaultValue=T{})
Retrieve a key/value pair from a section.
Definition: BasicConfig.h:355
ripple::HashPrefix::batch
@ batch
Batch.
std::pair
+
std::piecewise_construct
T piecewise_construct
std::vector::push_back
T push_back(T... args)
std::vector::reserve
T reserve(T... args)
std::shared_ptr::reset
T reset(T... args)
diff --git a/Offer__test_8cpp_source.html b/Offer__test_8cpp_source.html index 7ed9e866e5..61433d69a7 100644 --- a/Offer__test_8cpp_source.html +++ b/Offer__test_8cpp_source.html @@ -5486,7 +5486,7 @@ $(function() {
5408 }
5409
5410 void
-
5411 run(std::uint32_t instance, bool last = false)
+
5411 run(std::uint32_t instance, bool last = false)
5412 {
5413 using namespace jtx;
5414 static FeatureBitset const all{supported_amendments()};
@@ -5510,7 +5510,7 @@ $(function() {
5432 {
5433 testAll(feats[instance]);
5434 }
-
5435 BEAST_EXPECT(!last || instance == feats.size() - 1);
+
5435 BEAST_EXPECT(!last || instance == feats.size() - 1);
5436 }
5437
5438 void
@@ -5733,6 +5733,7 @@ $(function() {
ripple::test::jtx::txflags
Set the flags on a JTx.
Definition: txflags.h:31
std::distance
T distance(T... args)
std::uint32_t
+
std::chrono::last
std::map
Json::arrayValue
@ arrayValue
array value (ordered list)
Definition: json_value.h:45
ripple::keylet::line
Keylet line(AccountID const &id0, AccountID const &id1, Currency const &currency) noexcept
The index of a trust line for a given currency.
Definition: Indexes.cpp:237
diff --git a/OpenView_8cpp_source.html b/OpenView_8cpp_source.html index 5398e13750..d37401d274 100644 --- a/OpenView_8cpp_source.html +++ b/OpenView_8cpp_source.html @@ -341,7 +341,7 @@ $(function() {
263 std::shared_ptr<Serializer const> const& metaData)
264{
265 auto const result = txs_.emplace(
-
266 std::piecewise_construct,
+
266 std::piecewise_construct,
267 std::forward_as_tuple(key),
268 std::forward_as_tuple(txn, metaData));
269 if (!result.second)
@@ -419,6 +419,7 @@ $(function() {
std
STL namespace.
std::optional
std::pair
+
std::piecewise_construct
T piecewise_construct
std::shared_ptr
std::map::size
T size(T... args)
std::size_t
diff --git a/OverlayImpl_8cpp_source.html b/OverlayImpl_8cpp_source.html index ba353562c1..a15dca4980 100644 --- a/OverlayImpl_8cpp_source.html +++ b/OverlayImpl_8cpp_source.html @@ -519,7 +519,7 @@ $(function() {
441
442 {
443 auto const result = ids_.emplace(
-
444 std::piecewise_construct,
+
444 std::piecewise_construct,
445 std::make_tuple(peer->id()),
446 std::make_tuple(peer));
447 XRPL_ASSERT(
@@ -677,7 +677,7 @@ $(function() {
604 {
605 std::lock_guard lock(mutex_);
606 auto const result(ids_.emplace(
-
607 std::piecewise_construct,
+
607 std::piecewise_construct,
608 std::make_tuple(peer->id()),
609 std::make_tuple(peer)));
610 XRPL_ASSERT(
@@ -1877,6 +1877,7 @@ $(function() {
std
STL namespace.
std::condition_variable_any::notify_all
T notify_all(T... args)
std::optional
+
std::piecewise_construct
T piecewise_construct
std::vector::push_back
T push_back(T... args)
std::shuffle
T shuffle(T... args)
std::reference_wrapper
diff --git a/PayChan__test_8cpp_source.html b/PayChan__test_8cpp_source.html index 871fce32f0..e953619ca2 100644 --- a/PayChan__test_8cpp_source.html +++ b/PayChan__test_8cpp_source.html @@ -163,7 +163,7 @@ $(function() {
85 {
86 testcase("simple");
87 using namespace jtx;
-
88 using namespace std::literals::chrono_literals;
+
88 using namespace std::literals::chrono_literals;
89 Env env{*this, features};
90 auto const alice = Account("alice");
91 auto const bob = Account("bob");
@@ -347,11 +347,11 @@ $(function() {
269 env(fset(alice, asfDisallowIncomingPayChan));
270 env.close();
271 auto const sle = env.le(alice);
-
272 uint32_t flags = sle->getFlags();
+
272 uint32_t flags = sle->getFlags();
273 BEAST_EXPECT(!(flags & lsfDisallowIncomingPayChan));
274 }
275
-
276 using namespace std::literals::chrono_literals;
+
276 using namespace std::literals::chrono_literals;
277 Env env{*this, features | disallowIncoming};
278 auto const alice = Account("alice");
279 auto const bob = Account("bob");
@@ -422,7 +422,7 @@ $(function() {
344 {
345 testcase("cancel after");
346 using namespace jtx;
-
347 using namespace std::literals::chrono_literals;
+
347 using namespace std::literals::chrono_literals;
348 auto const alice = Account("alice");
349 auto const bob = Account("bob");
350 auto const carol = Account("carol");
@@ -533,7 +533,7 @@ $(function() {
455 {
456 testcase("expiration");
457 using namespace jtx;
-
458 using namespace std::literals::chrono_literals;
+
458 using namespace std::literals::chrono_literals;
459 Env env{*this, features};
460 auto const alice = Account("alice");
461 auto const bob = Account("bob");
@@ -599,7 +599,7 @@ $(function() {
521 {
522 testcase("settle delay");
523 using namespace jtx;
-
524 using namespace std::literals::chrono_literals;
+
524 using namespace std::literals::chrono_literals;
525 Env env{*this, features};
526 auto const alice = Account("alice");
527 auto const bob = Account("bob");
@@ -659,7 +659,7 @@ $(function() {
581 {
582 testcase("close dry");
583 using namespace jtx;
-
584 using namespace std::literals::chrono_literals;
+
584 using namespace std::literals::chrono_literals;
585 Env env{*this, features};
586 auto const alice = Account("alice");
587 auto const bob = Account("bob");
@@ -694,7 +694,7 @@ $(function() {
616 // auth amount defaults to balance if not present
617 testcase("default amount");
618 using namespace jtx;
-
619 using namespace std::literals::chrono_literals;
+
619 using namespace std::literals::chrono_literals;
620 Env env{*this, features};
621 auto const alice = Account("alice");
622 auto const bob = Account("bob");
@@ -749,7 +749,7 @@ $(function() {
671 // auth amount defaults to balance if not present
672 testcase("Disallow XRP");
673 using namespace jtx;
-
674 using namespace std::literals::chrono_literals;
+
674 using namespace std::literals::chrono_literals;
675
676 auto const alice = Account("alice");
677 auto const bob = Account("bob");
@@ -809,7 +809,7 @@ $(function() {
731 // auth amount defaults to balance if not present
732 testcase("Dst Tag");
733 using namespace jtx;
-
734 using namespace std::literals::chrono_literals;
+
734 using namespace std::literals::chrono_literals;
735 // Create a channel where dst disallows XRP
736 Env env{*this, features};
737 auto const alice = Account("alice");
@@ -838,7 +838,7 @@ $(function() {
760 {
761 testcase("Deposit Authorization");
762 using namespace jtx;
-
763 using namespace std::literals::chrono_literals;
+
763 using namespace std::literals::chrono_literals;
764
765 auto const alice = Account("alice");
766 auto const bob = Account("bob");
@@ -962,7 +962,7 @@ $(function() {
884 {
885 testcase("Deposit Authorization with Credentials");
886 using namespace jtx;
-
887 using namespace std::literals::chrono_literals;
+
887 using namespace std::literals::chrono_literals;
888
889 char const credType[] = "abcde";
890
@@ -994,7 +994,7 @@ $(function() {
916
917 { // create credentials
918 auto jv = credentials::create(alice, carol, credType);
-
919 uint32_t const t = env.current()
+
919 uint32_t const t = env.current()
920 ->info()
921 .parentCloseTime.time_since_epoch()
922 .count() +
@@ -1147,7 +1147,7 @@ $(function() {
1069 // auth amount defaults to balance if not present
1070 testcase("Multiple channels to the same account");
1071 using namespace jtx;
-
1072 using namespace std::literals::chrono_literals;
+
1072 using namespace std::literals::chrono_literals;
1073 Env env{*this, features};
1074 auto const alice = Account("alice");
1075 auto const bob = Account("bob");
@@ -1170,7 +1170,7 @@ $(function() {
1092 testcase("AccountChannels RPC");
1093
1094 using namespace jtx;
-
1095 using namespace std::literals::chrono_literals;
+
1095 using namespace std::literals::chrono_literals;
1096 Env env{*this, features};
1097 auto const alice = Account("alice");
1098 auto const bob = Account("bob");
@@ -1244,7 +1244,7 @@ $(function() {
1166 testcase("Account channels RPC markers");
1167
1168 using namespace test::jtx;
-
1169 using namespace std::literals;
+
1169 using namespace std::literals;
1170
1171 auto const alice = Account("alice");
1172 auto const bobs = []() -> std::vector<Account> {
@@ -1362,7 +1362,7 @@ $(function() {
1284 testcase("Account channels RPC owner only");
1285
1286 using namespace test::jtx;
-
1287 using namespace std::literals;
+
1287 using namespace std::literals;
1288
1289 auto const alice = Account("alice");
1290 auto const bob = Account("bob");
@@ -1395,7 +1395,7 @@ $(function() {
1317 testAccountChannelAuthorize(FeatureBitset features)
1318 {
1319 using namespace jtx;
-
1320 using namespace std::literals::chrono_literals;
+
1320 using namespace std::literals::chrono_literals;
1321
1322 Env env{*this, features};
1323 auto const alice = Account("alice");
@@ -1434,7 +1434,7 @@ $(function() {
1356 {
1357 testcase("PayChan Auth/Verify RPC");
1358 using namespace jtx;
-
1359 using namespace std::literals::chrono_literals;
+
1359 using namespace std::literals::chrono_literals;
1360 Env env{*this, features};
1361 auto const alice = Account("alice");
1362 auto const bob = Account("bob");
@@ -1487,13 +1487,13 @@ $(function() {
1409 r[jss::result][jss::channels][1u][jss::channel_id] == c);
1410 }
1411
-
1412 auto sliceToHex = [](Slice const& slice) {
+
1412 auto sliceToHex = [](Slice const& slice) {
1413 std::string s;
-
1414 s.reserve(2 * slice.size());
-
1415 for (int i = 0; i < slice.size(); ++i)
+
1414 s.reserve(2 * slice.size());
+
1415 for (int i = 0; i < slice.size(); ++i)
1416 {
-
1417 s += "0123456789ABCDEF"[((slice[i] & 0xf0) >> 4)];
-
1418 s += "0123456789ABCDEF"[((slice[i] & 0x0f) >> 0)];
+
1417 s += "0123456789ABCDEF"[((slice[i] & 0xf0) >> 4)];
+
1418 s += "0123456789ABCDEF"[((slice[i] & 0x0f) >> 0)];
1419 }
1420 return s;
1421 };
@@ -1774,7 +1774,7 @@ $(function() {
1696 {
1697 testcase("Optional Fields");
1698 using namespace jtx;
-
1699 using namespace std::literals::chrono_literals;
+
1699 using namespace std::literals::chrono_literals;
1700 Env env{*this, features};
1701 auto const alice = Account("alice");
1702 auto const bob = Account("bob");
@@ -1825,7 +1825,7 @@ $(function() {
1747 {
1748 testcase("malformed pk");
1749 using namespace jtx;
-
1750 using namespace std::literals::chrono_literals;
+
1750 using namespace std::literals::chrono_literals;
1751 Env env{*this, features};
1752 auto const alice = Account("alice");
1753 auto const bob = Account("bob");
@@ -1896,7 +1896,7 @@ $(function() {
1818 testcase("Metadata & Ownership");
1819
1820 using namespace jtx;
-
1821 using namespace std::literals::chrono_literals;
+
1821 using namespace std::literals::chrono_literals;
1822
1823 auto const alice = Account("alice");
1824 auto const bob = Account("bob");
@@ -2001,7 +2001,7 @@ $(function() {
1923 {
1924 testcase("Account Delete");
1925 using namespace test::jtx;
-
1926 using namespace std::literals::chrono_literals;
+
1926 using namespace std::literals::chrono_literals;
1927 auto rmAccount = [this](
1928 Env& env,
1929 Account const& toRm,
@@ -2234,7 +2234,7 @@ $(function() {
2156 {
2157 testcase("using tickets");
2158 using namespace jtx;
-
2159 using namespace std::literals::chrono_literals;
+
2159 using namespace std::literals::chrono_literals;
2160 Env env{*this, features};
2161 auto const alice = Account("alice");
2162 auto const bob = Account("bob");
@@ -2537,6 +2537,8 @@ $(function() {
ripple::temDISABLED
@ temDISABLED
Definition: TER.h:114
ripple::temDST_IS_SRC
@ temDST_IS_SRC
Definition: TER.h:108
ripple::temBAD_SIGNATURE
@ temBAD_SIGNATURE
Definition: TER.h:105
+
std::literals::chrono_literals
+
std::literals
std::optional
std::pair
std::vector::reserve
T reserve(T... args)
@@ -2544,6 +2546,7 @@ $(function() {
std::shared_ptr
std::set::size
T size(T... args)
std::size_t
+
std::slice
ripple::test::PayChan_test
Definition: PayChan_test.cpp:35
ripple::test::PayChan_test::channelKeyAndSle
static std::pair< uint256, std::shared_ptr< SLE const > > channelKeyAndSle(ReadView const &view, jtx::Account const &account, jtx::Account const &dst)
Definition: PayChan_test.cpp:39
ripple::test::PayChan_test::testSimple
void testSimple(FeatureBitset features)
Definition: PayChan_test.cpp:84
diff --git a/PayStrand__test_8cpp_source.html b/PayStrand__test_8cpp_source.html index 95d2ceaff3..63e801b658 100644 --- a/PayStrand__test_8cpp_source.html +++ b/PayStrand__test_8cpp_source.html @@ -257,7 +257,7 @@ $(function() {
179 prevCur,
180 prevIss,
181 boundary,
-
182 last
+
182 last
183 };
184
185 std::uint16_t state_ = 0;
@@ -1431,6 +1431,7 @@ $(function() {
std::initializer_list
std::vector::insert
T insert(T... args)
std::uint32_t
+
std::chrono::last
std::make_tuple
T make_tuple(T... args)
ripple::keylet::line
Keylet line(AccountID const &id0, AccountID const &id1, Currency const &currency) noexcept
The index of a trust line for a given currency.
Definition: Indexes.cpp:237
ripple::keylet::account
Keylet account(AccountID const &id) noexcept
AccountID root.
Definition: Indexes.cpp:177
diff --git a/RPCCall_8cpp_source.html b/RPCCall_8cpp_source.html index f0df173d25..33e42f911f 100644 --- a/RPCCall_8cpp_source.html +++ b/RPCCall_8cpp_source.html @@ -1286,7 +1286,7 @@ $(function() {
1208 struct Command
1209 {
1210 char const* name;
-
1211 parseFuncPtr parse;
+
1211 parseFuncPtr parse;
1212 int minParams;
1213 int maxParams;
1214 };
@@ -1896,7 +1896,6 @@ $(function() {
ripple::RPCCall::fromNetwork
void fromNetwork(boost::asio::io_service &io_service, std::string const &strIp, std::uint16_t const iPort, std::string const &strUsername, std::string const &strPassword, std::string const &strPath, std::string const &strMethod, Json::Value const &jvParams, bool const bSSL, bool const quiet, Logs &logs, std::function< void(Json::Value const &jvInput)> callbackFuncP, std::unordered_map< std::string, std::string > headers)
Definition: RPCCall.cpp:1650
ripple::RPC::make_param_error
Json::Value make_param_error(std::string const &message)
Returns a new json object that indicates invalid parameters.
Definition: ErrorCodes.h:261
ripple::RPC::apiCommandLineVersion
static constexpr auto apiCommandLineVersion
Definition: ApiVersion.h:60
-
ripple::test::jtx::parse
STObject parse(Json::Value const &jv)
Convert JSON to STObject.
Definition: utility.cpp:38
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: algorithm.h:26
ripple::keyTypeFromString
std::optional< KeyType > keyTypeFromString(std::string const &s)
Definition: KeyType.h:34
ripple::toBase58
std::string toBase58(AccountID const &v)
Convert AccountID to base58 checked string.
Definition: AccountID.cpp:114
diff --git a/RPCHelpers_8cpp_source.html b/RPCHelpers_8cpp_source.html index 1ab223a98e..2d29e04598 100644 --- a/RPCHelpers_8cpp_source.html +++ b/RPCHelpers_8cpp_source.html @@ -1041,7 +1041,7 @@ $(function() {
963 // (case-sensitive).
964 auto const filter = p.asString();
965 auto const iter =
-
966 std::ranges::find_if(types, [&filter](decltype(types.front())& t) {
+
966 std::ranges::find_if(types, [&filter](decltype(types.front())& t) {
967 return boost::iequals(std::get<0>(t), filter) ||
968 std::get<1>(t) == filter;
969 });
diff --git a/RawStateTable_8cpp_source.html b/RawStateTable_8cpp_source.html index b5d65775c1..4bd2cc160d 100644 --- a/RawStateTable_8cpp_source.html +++ b/RawStateTable_8cpp_source.html @@ -322,7 +322,7 @@ $(function() {
244{
245 // The base invariant is checked during apply
246 auto const result = items_.emplace(
-
247 std::piecewise_construct,
+
247 std::piecewise_construct,
248 std::forward_as_tuple(sle->key()),
249 std::forward_as_tuple(Action::erase, sle));
250 if (result.second)
@@ -347,7 +347,7 @@ $(function() {
269RawStateTable::insert(std::shared_ptr<SLE> const& sle)
270{
271 auto const result = items_.emplace(
-
272 std::piecewise_construct,
+
272 std::piecewise_construct,
273 std::forward_as_tuple(sle->key()),
274 std::forward_as_tuple(Action::insert, sle));
275 if (result.second)
@@ -372,7 +372,7 @@ $(function() {
294RawStateTable::replace(std::shared_ptr<SLE> const& sle)
295{
296 auto const result = items_.emplace(
-
297 std::piecewise_construct,
+
297 std::piecewise_construct,
298 std::forward_as_tuple(sle->key()),
299 std::forward_as_tuple(Action::replace, sle));
300 if (result.second)
@@ -492,6 +492,7 @@ $(function() {
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: algorithm.h:26
ripple::LogicError
void LogicError(std::string const &how) noexcept
Called when faulty logic causes a broken invariant.
Definition: contract.cpp:37
std::optional
+
std::piecewise_construct
T piecewise_construct
std::shared_ptr
ripple::Keylet
A pair of SHAMap key and LedgerEntryType.
Definition: Keylet.h:39
ripple::Keylet::check
bool check(STLedgerEntry const &) const
Returns true if the SLE matches the type.
Definition: Keylet.cpp:28
diff --git a/StrandFlow_8h_source.html b/StrandFlow_8h_source.html index 6d63067011..b42f0184c1 100644 --- a/StrandFlow_8h_source.html +++ b/StrandFlow_8h_source.html @@ -387,7 +387,7 @@ $(function() {
324 }
325
326 FlowResult(TER ter_, boost::container::flat_set<uint256> ofrsToRm)
-
327 : removableOffers(std::move(ofrsToRm)), ter(ter_)
+
327 : removableOffers(std::move(ofrsToRm)), ter(ter_)
328 {
329 }
330
@@ -396,7 +396,7 @@ $(function() {
333 TInAmt const& in_,
334 TOutAmt const& out_,
335 boost::container::flat_set<uint256> ofrsToRm)
-
336 : in(in_), out(out_), removableOffers(std::move(ofrsToRm)), ter(ter_)
+
336 : in(in_), out(out_), removableOffers(std::move(ofrsToRm)), ter(ter_)
337 {
338 }
339};
@@ -954,6 +954,7 @@ $(function() {
iterator
std::make_optional
T make_optional(T... args)
std::min
T min(T... args)
+
std::ranges::move
T move(T... args)
ripple::credentials::valid
TER valid(PreclaimContext const &ctx, AccountID const &src)
Definition: CredentialHelpers.cpp:153
ripple::keylet::offer
Keylet offer(AccountID const &id, std::uint32_t seq) noexcept
An offer from an account.
Definition: Indexes.cpp:267
ripple
Use hash_* containers for keys that do not need a cryptographically secure hashing algorithm.
Definition: algorithm.h:26
diff --git a/TaggedPointer_8h_source.html b/TaggedPointer_8h_source.html index 25344b88d0..591b9af869 100644 --- a/TaggedPointer_8h_source.html +++ b/TaggedPointer_8h_source.html @@ -185,7 +185,7 @@ $(function() {
225popcnt16(std::uint16_t a)
226{
227#if __cpp_lib_bitops
-
228 return std::popcount(a);
+
228 return std::popcount(a);
229#elif defined(__clang__) || defined(__GNUC__)
230 return __builtin_popcount(a);
231#else
@@ -241,6 +241,7 @@ $(function() {
ripple::popcnt16
int popcnt16(std::uint16_t a)
Definition: TaggedPointer.h:225
optional
std::pair
+
std::popcount
T popcount(T... args)
ripple::TaggedPointer::RawAllocateTag
Definition: TaggedPointer.h:80
diff --git a/TestHelpers_8h_source.html b/TestHelpers_8h_source.html index b76ce7ed64..4ae95768ed 100644 --- a/TestHelpers_8h_source.html +++ b/TestHelpers_8h_source.html @@ -112,10 +112,10 @@ $(function() {
34
35#if (defined(__clang_major__) && __clang_major__ < 15)
36#include <experimental/source_location>
-
37using source_location = std::experimental::source_location;
+
37using source_location = std::experimental::source_location;
38#else
39#include <source_location>
-
40using std::source_location;
+
40using std::source_location;
41#endif
42
43namespace ripple {
@@ -558,7 +558,7 @@ $(function() {
483 std::size_t expectedPerLedger,
484 std::uint64_t expectedMinFeeLevel = baseFeeLevel.fee(),
485 std::uint64_t expectedMedFeeLevel = minEscalationFeeLevel.fee(),
-
486 source_location const location = source_location::current())
+
486 source_location const location = source_location::current())
487{
488 int line = location.line();
489 char const* file = location.file_name();
@@ -731,7 +731,7 @@ $(function() {
ripple::to_string
std::string to_string(base_uint< Bits, Tag > const &a)
Definition: base_uint.h:630
std::optional
std::size_t
-
std::experimental::source_location
+
std::source_location
ripple::JsonOptions::none
@ none
Definition: STBase.h:44
ripple::TxQ::Metrics::referenceFeeLevel
FeeLevel64 referenceFeeLevel
Reference transaction fee level.
Definition: TxQ.h:178
ripple::test::jtx::JTx
Execution context for applying a JSON transaction.
Definition: JTx.h:45
diff --git a/TrustedPublisherServer_8h_source.html b/TrustedPublisherServer_8h_source.html index 1998cacb7b..f15dfb8ea2 100644 --- a/TrustedPublisherServer_8h_source.html +++ b/TrustedPublisherServer_8h_source.html @@ -589,7 +589,7 @@ $(function() {
511 bool ssl_)
512 : id(id_)
513 , self(self_)
-
514 , sock(std::move(sock_))
+
514 , sock(std::move(sock_))
515 , work(sock_.get_executor())
516 , ssl(ssl_)
517 {
@@ -869,6 +869,7 @@ $(function() {
std::make_pair
T make_pair(T... args)
std::numeric_limits::max
T max(T... args)
memory
+
std::ranges::move
T move(T... args)
beast
Definition: base_uint.h:662
boost::asio
Definition: Port.h:39
ripple::NodeStore::write
void write(nudb::detail::ostream &os, std::size_t t)
Definition: varint.h:134
diff --git a/XChain__test_8cpp_source.html b/XChain__test_8cpp_source.html index bd32258dea..0c08ecfa9c 100644 --- a/XChain__test_8cpp_source.html +++ b/XChain__test_8cpp_source.html @@ -1633,7 +1633,7 @@ $(function() {
1606 result.reserve(numSigners);
1607 for (int i = 0; i < numSigners; ++i)
1608 {
-
1609 using namespace std::literals;
+
1609 using namespace std::literals;
1610 auto const a = Account("signer_"s + std::to_string(i));
1611 result.emplace_back(a, weights[i]);
1612 }
@@ -1708,7 +1708,7 @@ $(function() {
1681 result.reserve(numSigners);
1682 for (int i = 0; i < numSigners; ++i)
1683 {
-
1684 using namespace std::literals;
+
1684 using namespace std::literals;
1685 auto const a = Account("signer_"s + std::to_string(i));
1686 result.emplace_back(a, weights[i]);
1687 }
@@ -1786,7 +1786,7 @@ $(function() {
1759 result.reserve(numSigners);
1760 for (int i = 0; i < numSigners; ++i)
1761 {
-
1762 using namespace std::literals;
+
1762 using namespace std::literals;
1763 auto const a = Account("signer_"s + std::to_string(i));
1764 result.emplace_back(a, weights[i]);
1765 }
@@ -1861,7 +1861,7 @@ $(function() {
1834 result.reserve(numSigners);
1835 for (int i = 0; i < numSigners; ++i)
1836 {
-
1837 using namespace std::literals;
+
1837 using namespace std::literals;
1838 auto const a = Account("signer_"s + std::to_string(i));
1839 result.emplace_back(a, weights[i]);
1840 }
@@ -4320,7 +4320,7 @@ $(function() {
4309 STAmount amt;
4310 bool a2b; // direction of transfer
4311 WithClaim with_claim{WithClaim::no};
-
4312 uint32_t claim_id{0};
+
4312 uint32_t claim_id{0};
4313 std::array<bool, num_signers> attested{};
4314 };
4315
@@ -4331,7 +4331,7 @@ $(function() {
4320 STAmount amt;
4321 STAmount reward;
4322 bool a2b;
-
4323 uint32_t claim_id{0};
+
4323 uint32_t claim_id{0};
4324 std::array<bool, num_signers> attested{};
4325 };
4326
@@ -4384,7 +4384,7 @@ $(function() {
4373 claims.clear();
4374 }
4375
-
4376 uint32_t
+
4376 uint32_t
4377 sendCreateAttestations(
4378 size_t signer_idx,
4379 BridgeID bridge,
@@ -4519,13 +4519,13 @@ $(function() {
4508 using complete_cb =
4509 std::function<void(std::vector<size_t> const& signers)>;
4510
-
4511 uint32_t claim_id{0};
-
4512 uint32_t create_count{0}; // for account create. First should be 1
-
4513 uint32_t claim_count{
+
4511 uint32_t claim_id{0};
+
4512 uint32_t create_count{0}; // for account create. First should be 1
+
4513 uint32_t claim_count{
4514 0}; // for account create. Increments after quorum for
4515 // current create_count (starts at 1) is reached.
4516
-
4517 uint32_t num_create_attn_sent{0}; // for current claim_count
+
4517 uint32_t num_create_attn_sent{0}; // for current claim_count
4518 std::vector<size_t> signers;
4519 std::vector<complete_cb> create_callbacks;
4520 };
@@ -4650,7 +4650,7 @@ $(function() {
4639 return cr.a2b;
4640 }
4641
-
4642 uint32_t
+
4642 uint32_t
4643 issue_account_create()
4644 {
4645 ChainStateTrack& st = srcState();
@@ -4668,7 +4668,7 @@ $(function() {
4657 }
4658
4659 void
-
4660 attest(uint64_t time, uint32_t rnd)
+
4660 attest(uint64_t time, uint32_t rnd)
4661 {
4662 ChainStateTrack& st = destState();
4663
@@ -4732,7 +4732,7 @@ $(function() {
4721 }
4722
4723 SmState
-
4724 advance(uint64_t time, uint32_t rnd)
+
4724 advance(uint64_t time, uint32_t rnd)
4725 {
4726 switch (sm_state)
4727 {
@@ -4782,7 +4782,7 @@ $(function() {
4771 return xfer.a2b;
4772 }
4773
-
4774 uint32_t
+
4774 uint32_t
4775 create_claim_id()
4776 {
4777 ChainStateTrack& st = destState();
@@ -4834,7 +4834,7 @@ $(function() {
4823 }
4824
4825 bool
-
4826 attest(uint64_t time, uint32_t rnd)
+
4826 attest(uint64_t time, uint32_t rnd)
4827 {
4828 ChainStateTrack& st = destState();
4829
@@ -4888,7 +4888,7 @@ $(function() {
4877 }
4878
4879 SmState
-
4880 advance(uint64_t time, uint32_t rnd)
+
4880 advance(uint64_t time, uint32_t rnd)
4881 {
4882 switch (sm_state)
4883 {
@@ -4936,7 +4936,7 @@ $(function() {
4925
4926 void
4927 xfer(
-
4928 uint64_t time,
+
4928 uint64_t time,
4929 std::shared_ptr<ChainStateTracker> const& chainstate,
4930 BridgeDef const& bridge,
4931 Transfer transfer)
@@ -4946,7 +4946,7 @@ $(function() {
4935 }
4936
4937 void
-
4938 ac(uint64_t time,
+
4938 ac(uint64_t time,
4939 std::shared_ptr<ChainStateTracker> const& chainstate,
4940 BridgeDef const& bridge,
4941 AccountCreate ac)
@@ -4962,7 +4962,7 @@ $(function() {
4951 bool verify_balances = true)
4952 {
4953 using namespace jtx;
-
4954 uint64_t time = 0;
+
4954 uint64_t time = 0;
4955 std::mt19937 gen(27); // Standard mersenne_twister_engine
4956 std::uniform_int_distribution<uint32_t> distrib(0, 9);
4957
@@ -4972,7 +4972,7 @@ $(function() {
4961 for (auto it = sm_.begin(); it != sm_.end();)
4962 {
4963 auto vis = [&](auto& sm) {
-
4964 uint32_t rnd = distrib(gen);
+
4964 uint32_t rnd = distrib(gen);
4965 return sm.advance(time, rnd);
4966 };
4967 auto& [t, sm] = *it;
@@ -5015,7 +5015,7 @@ $(function() {
5004
5005 constexpr size_t num_acct = 10;
5006 auto a = [&doorXRPLocking, &doorUSDLocking, &doorUSDIssuing]() {
-
5007 using namespace std::literals;
+
5007 using namespace std::literals;
5008 std::vector<Account> result;
5009 result.reserve(num_acct);
5010 for (int i = 0; i < num_acct; ++i)
@@ -5066,7 +5066,7 @@ $(function() {
5055 // also create some unfunded accounts
5056 constexpr size_t num_ua = 20;
5057 auto ua = []() {
-
5058 using namespace std::literals;
+
5058 using namespace std::literals;
5059 std::vector<Account> result;
5060 result.reserve(num_ua);
5061 for (int i = 0; i < num_ua; ++i)
@@ -5365,6 +5365,7 @@ $(function() {
ripple::temINVALID_FLAG
@ temINVALID_FLAG
Definition: TER.h:111
ripple::temXCHAIN_BRIDGE_BAD_ISSUES
@ temXCHAIN_BRIDGE_BAD_ISSUES
Definition: TER.h:133
ripple::temDISABLED
@ temDISABLED
Definition: TER.h:114
+
std::literals
std
STL namespace.
optional
random
diff --git a/aged__ordered__container_8h_source.html b/aged__ordered__container_8h_source.html index 340d928c2a..5f23bba8f4 100644 --- a/aged__ordered__container_8h_source.html +++ b/aged__ordered__container_8h_source.html @@ -1737,7 +1737,7 @@ $(function() {
1675 if (result.second)
1676 {
1677 element* const p(new_element(
-
1678 std::piecewise_construct,
+
1678 std::piecewise_construct,
1679 std::forward_as_tuple(key),
1680 std::forward_as_tuple()));
1681 m_cont.insert_commit(*p, d);
@@ -1766,7 +1766,7 @@ $(function() {
1704 if (result.second)
1705 {
1706 element* const p(new_element(
-
1707 std::piecewise_construct,
+
1707 std::piecewise_construct,
1708 std::forward_as_tuple(std::move(key)),
1709 std::forward_as_tuple()));
1710 m_cont.insert_commit(*p, d);
@@ -2575,6 +2575,7 @@ $(function() {
std
STL namespace.
std::out_of_range
std::pair
+
std::piecewise_construct
T piecewise_construct
std::ptrdiff_t
std::cref
T cref(T... args)
std::reference_wrapper
diff --git a/aged__unordered__container_8h_source.html b/aged__unordered__container_8h_source.html index 026f409a80..752462b151 100644 --- a/aged__unordered__container_8h_source.html +++ b/aged__unordered__container_8h_source.html @@ -2698,7 +2698,7 @@ $(function() {
2637 if (result.second)
2638 {
2639 element* const p(new_element(
-
2640 std::piecewise_construct,
+
2640 std::piecewise_construct,
2641 std::forward_as_tuple(key),
2642 std::forward_as_tuple()));
2643 m_cont.insert_commit(*p, d);
@@ -2739,7 +2739,7 @@ $(function() {
2678 if (result.second)
2679 {
2680 element* const p(new_element(
-
2681 std::piecewise_construct,
+
2681 std::piecewise_construct,
2682 std::forward_as_tuple(std::move(key)),
2683 std::forward_as_tuple()));
2684 m_cont.insert_commit(*p, d);
@@ -3777,6 +3777,7 @@ $(function() {
std
STL namespace.
std::out_of_range
std::pair
+
std::piecewise_construct
T piecewise_construct
std::ptrdiff_t
std::cref
T cref(T... args)
std::reference_wrapper
diff --git a/antithesis__sdk_8h_source.html b/antithesis__sdk_8h_source.html index 038973a6f6..e59ca2890e 100644 --- a/antithesis__sdk_8h_source.html +++ b/antithesis__sdk_8h_source.html @@ -593,7 +593,7 @@ $(function() {
515 LocationInfo location;
516
517 Assertion(const char* message, AssertionType type, LocationInfo&& location) :
-
518 state(), type(type), message(message), location(std::move(location)) {
+
518 state(), type(type), message(message), location(std::move(location)) {
519 this->add_to_catalog();
520 }
521
@@ -687,7 +687,7 @@ $(function() {
609 std::pair<NumericValue, bool> extreme_half_gap;
610
611 NumericGuidepost(const char* message, LocationInfo&& location, GuidepostType type) :
-
612 message(message), location(std::move(location)), type(type) {
+
612 message(message), location(std::move(location)), type(type) {
613 this->add_to_catalog();
614 if (type == GUIDEPOST_MAXIMIZE) {
615 extreme_half_gap = { std::numeric_limits<NumericValue>::max(), false };
@@ -730,13 +730,13 @@ $(function() {
652 // At this point both numbers are even, so the midpoint calculation is exact
653 NumericValue half_left = left / 2;
654 NumericValue half_right = right / 2;
-
655 NumericValue midpoint = half_left + half_right;
+
655 NumericValue midpoint = half_left + half_right;
656 // This won't overflow or underflow because we're subtracting the midpoint
657 // We compute a positive value and a sign so that we don't have to do weird things with unsigned types
658 if (left > right) {
-
659 return { midpoint - right, true };
+
659 return { midpoint - right, true };
660 } else {
-
661 return { right - midpoint, false };
+
661 return { right - midpoint, false };
662 }
663 } else {
664 // If it's floating point we don't need to worry about overflowing, just do the arithmetic
@@ -806,7 +806,7 @@ $(function() {
728 GuidepostType type;
729
730 BooleanGuidepost(const char* message, LocationInfo&& location, GuidepostType type) :
-
731 message(message), location(std::move(location)), type(type) {
+
731 message(message), location(std::move(location)), type(type) {
732 this->add_to_catalog();
733 }
734
@@ -1207,6 +1207,8 @@ $(function() {
std::numeric_limits::max
T max(T... args)
memory
std::mt19937_64
+
std::midpoint
T midpoint(T... args)
+
std::ranges::move
T move(T... args)
Json::to_json
Value to_json(ripple::Number const &number)
Definition: json_value.h:445
antithesis::internal::random
Definition: antithesis_sdk.h:78
antithesis::internal
Definition: antithesis_sdk.h:78
diff --git a/beast__io__latency__probe__test_8cpp_source.html b/beast__io__latency__probe__test_8cpp_source.html index ff3b30a982..3a4469cee6 100644 --- a/beast__io__latency__probe__test_8cpp_source.html +++ b/beast__io__latency__probe__test_8cpp_source.html @@ -131,10 +131,10 @@ $(function() {
60 measure_asio_timers(duration interval = 100ms, size_t num_samples = 50)
61 {
62 using namespace std::chrono;
-
63 boost::asio::io_service ios;
-
64 std::optional<boost::asio::io_service::work> work{ios};
-
65 std::thread worker{[&] { ios.run(); }};
-
66 boost::asio::basic_waitable_timer<Clock> timer{ios};
+
63 boost::asio::io_service ios;
+
64 std::optional<boost::asio::io_service::work> work{ios};
+
65 std::thread worker{[&] { ios.run(); }};
+
66 boost::asio::basic_waitable_timer<Clock> timer{ios};
67 elapsed_times_.reserve(num_samples);
68 std::mutex mtx;
69 std::unique_lock<std::mutex> mainlock{mtx};
@@ -206,8 +206,8 @@ $(function() {
135
136 test_sampler(
137 std::chrono::milliseconds interval,
-
138 boost::asio::io_service& ios)
-
139 : probe_(interval, ios)
+
138 boost::asio::io_service& ios)
+
139 : probe_(interval, ios)
140 {
141 }
142
@@ -311,6 +311,7 @@ $(function() {
240
241BEAST_DEFINE_TESTSUITE(io_latency_probe, asio, beast);
algorithm
+
std::ios
std::string
std::vector::begin
T begin(T... args)
beast::io_latency_probe
Measures handler latency on an io_service queue.
Definition: io_latency_probe.h:38
diff --git a/classJson_1_1Array.html b/classJson_1_1Array.html index 1412f35a02..dba18084b5 100644 --- a/classJson_1_1Array.html +++ b/classJson_1_1Array.html @@ -102,13 +102,13 @@ Collaboration diagram for Json::Array:
Collaboration graph
- - - - - - - + + + + + + + diff --git a/classJson_1_1Array__coll__graph.map b/classJson_1_1Array__coll__graph.map index 3270081be9..8caf1d5b48 100644 --- a/classJson_1_1Array__coll__graph.map +++ b/classJson_1_1Array__coll__graph.map @@ -1,11 +1,11 @@ - - - - - - - + + + + + + + diff --git a/classJson_1_1Array__coll__graph.md5 b/classJson_1_1Array__coll__graph.md5 index 8fc5290f6b..97c19e9697 100644 --- a/classJson_1_1Array__coll__graph.md5 +++ b/classJson_1_1Array__coll__graph.md5 @@ -1 +1 @@ -41a980df2a5669d0c676cd4f17c31860 \ No newline at end of file +42938323643c4c320d40cccb84536413 \ No newline at end of file diff --git a/classJson_1_1Array__coll__graph.png b/classJson_1_1Array__coll__graph.png index df2a72ad2b..d7d21a0f37 100644 Binary files a/classJson_1_1Array__coll__graph.png and b/classJson_1_1Array__coll__graph.png differ diff --git a/classJson_1_1Collection.html b/classJson_1_1Collection.html index f52297fe7c..2cbf5c17b6 100644 --- a/classJson_1_1Collection.html +++ b/classJson_1_1Collection.html @@ -99,12 +99,12 @@ Collaboration diagram for Json::Collection:
Collaboration graph
- - - - - - + + + + + + diff --git a/classJson_1_1Collection__coll__graph.map b/classJson_1_1Collection__coll__graph.map index b313cd9763..a648823aec 100644 --- a/classJson_1_1Collection__coll__graph.map +++ b/classJson_1_1Collection__coll__graph.map @@ -1,10 +1,10 @@ - - - - - - + + + + + + diff --git a/classJson_1_1Collection__coll__graph.md5 b/classJson_1_1Collection__coll__graph.md5 index bd7aaf31a3..c3a3d95d09 100644 --- a/classJson_1_1Collection__coll__graph.md5 +++ b/classJson_1_1Collection__coll__graph.md5 @@ -1 +1 @@ -0e6f587eb452a38537f5b6c88aec47b8 \ No newline at end of file +6ee9143303570d4bede40d25f897fae9 \ No newline at end of file diff --git a/classJson_1_1Collection__coll__graph.png b/classJson_1_1Collection__coll__graph.png index 5abf197e5b..08fb39483b 100644 Binary files a/classJson_1_1Collection__coll__graph.png and b/classJson_1_1Collection__coll__graph.png differ diff --git a/classJson_1_1JsonObject__test.html b/classJson_1_1JsonObject__test.html index a7801eba06..8c223be12d 100644 --- a/classJson_1_1JsonObject__test.html +++ b/classJson_1_1JsonObject__test.html @@ -102,18 +102,18 @@ Collaboration diagram for Json::JsonObject_test:
Collaboration graph
- - - + + + - - + + - + @@ -123,19 +123,19 @@ Collaboration diagram for Json::JsonObject_test:
- - - - - - - - + + + + + + + + - - - - + + + +
[legend]
diff --git a/classJson_1_1JsonObject__test__coll__graph.map b/classJson_1_1JsonObject__test__coll__graph.map index 03518b06e5..2b56ec8a18 100644 --- a/classJson_1_1JsonObject__test__coll__graph.map +++ b/classJson_1_1JsonObject__test__coll__graph.map @@ -1,16 +1,16 @@ - - - + + + - - + + - + @@ -20,17 +20,17 @@ - - - - - - - - + + + + + + + + - - - - + + + + diff --git a/classJson_1_1JsonObject__test__coll__graph.md5 b/classJson_1_1JsonObject__test__coll__graph.md5 index 707a167139..f03deb2eae 100644 --- a/classJson_1_1JsonObject__test__coll__graph.md5 +++ b/classJson_1_1JsonObject__test__coll__graph.md5 @@ -1 +1 @@ -1ce4c764cb7e54f9c4f73d7823d0759c \ No newline at end of file +a7883f5502e827cba3776778e98e7107 \ No newline at end of file diff --git a/classJson_1_1JsonObject__test__coll__graph.png b/classJson_1_1JsonObject__test__coll__graph.png index 744dc47d0f..0fc4b34264 100644 Binary files a/classJson_1_1JsonObject__test__coll__graph.png and b/classJson_1_1JsonObject__test__coll__graph.png differ diff --git a/classJson_1_1JsonWriter__test.html b/classJson_1_1JsonWriter__test.html index c4f3fb6b65..7130b93edb 100644 --- a/classJson_1_1JsonWriter__test.html +++ b/classJson_1_1JsonWriter__test.html @@ -102,18 +102,18 @@ Collaboration diagram for Json::JsonWriter_test:
Collaboration graph
- - - - - - - + + + + + + + - - + + @@ -123,12 +123,12 @@ Collaboration diagram for Json::JsonWriter_test:
- - - - - - + + + + + +
[legend]
diff --git a/classJson_1_1JsonWriter__test__coll__graph.map b/classJson_1_1JsonWriter__test__coll__graph.map index 7202433983..20bd089f78 100644 --- a/classJson_1_1JsonWriter__test__coll__graph.map +++ b/classJson_1_1JsonWriter__test__coll__graph.map @@ -1,16 +1,16 @@ - - - - - - - + + + + + + + - - + + @@ -20,11 +20,11 @@ - - - - - - + + + + + + diff --git a/classJson_1_1JsonWriter__test__coll__graph.md5 b/classJson_1_1JsonWriter__test__coll__graph.md5 index 156520e78a..8b0ba202f4 100644 --- a/classJson_1_1JsonWriter__test__coll__graph.md5 +++ b/classJson_1_1JsonWriter__test__coll__graph.md5 @@ -1 +1 @@ -1f5ab98c1579339f2342caf084f6de5f \ No newline at end of file +f12e41cb36ff6deddd3f1e3b11a4b598 \ No newline at end of file diff --git a/classJson_1_1JsonWriter__test__coll__graph.png b/classJson_1_1JsonWriter__test__coll__graph.png index 13b86c0c40..9ae2736cf6 100644 Binary files a/classJson_1_1JsonWriter__test__coll__graph.png and b/classJson_1_1JsonWriter__test__coll__graph.png differ diff --git a/classJson_1_1Object.html b/classJson_1_1Object.html index cd16828476..673fe1ce21 100644 --- a/classJson_1_1Object.html +++ b/classJson_1_1Object.html @@ -103,13 +103,13 @@ Collaboration diagram for Json::Object:
Collaboration graph
- - - - - - - + + + + + + + diff --git a/classJson_1_1Object_1_1Proxy.html b/classJson_1_1Object_1_1Proxy.html index d6935f3414..6fcbe81826 100644 --- a/classJson_1_1Object_1_1Proxy.html +++ b/classJson_1_1Object_1_1Proxy.html @@ -87,14 +87,14 @@ Collaboration diagram for Json::Object::Proxy:
Collaboration graph
- - - - - - - - + + + + + + + + diff --git a/classJson_1_1Object_1_1Proxy__coll__graph.map b/classJson_1_1Object_1_1Proxy__coll__graph.map index 6b76925bdc..74442ea9b4 100644 --- a/classJson_1_1Object_1_1Proxy__coll__graph.map +++ b/classJson_1_1Object_1_1Proxy__coll__graph.map @@ -1,12 +1,12 @@ - - - - - - - - + + + + + + + + diff --git a/classJson_1_1Object_1_1Proxy__coll__graph.md5 b/classJson_1_1Object_1_1Proxy__coll__graph.md5 index eb798a8800..f944a8c9b5 100644 --- a/classJson_1_1Object_1_1Proxy__coll__graph.md5 +++ b/classJson_1_1Object_1_1Proxy__coll__graph.md5 @@ -1 +1 @@ -a5ca157bce3d96614687d658b03d9650 \ No newline at end of file +f31a7bc45234db82d9c34011a91b46d1 \ No newline at end of file diff --git a/classJson_1_1Object_1_1Proxy__coll__graph.png b/classJson_1_1Object_1_1Proxy__coll__graph.png index fd31a03824..f21d40a855 100644 Binary files a/classJson_1_1Object_1_1Proxy__coll__graph.png and b/classJson_1_1Object_1_1Proxy__coll__graph.png differ diff --git a/classJson_1_1Object_1_1Root.html b/classJson_1_1Object_1_1Root.html index e59af3304e..c0e6395641 100644 --- a/classJson_1_1Object_1_1Root.html +++ b/classJson_1_1Object_1_1Root.html @@ -98,14 +98,14 @@ Collaboration diagram for Json::Object::Root:
Collaboration graph
- - - - - - - - + + + + + + + + diff --git a/classJson_1_1Object_1_1Root__coll__graph.map b/classJson_1_1Object_1_1Root__coll__graph.map index 70359cade4..d8a48d512b 100644 --- a/classJson_1_1Object_1_1Root__coll__graph.map +++ b/classJson_1_1Object_1_1Root__coll__graph.map @@ -1,12 +1,12 @@ - - - - - - - - + + + + + + + + diff --git a/classJson_1_1Object_1_1Root__coll__graph.md5 b/classJson_1_1Object_1_1Root__coll__graph.md5 index a801ad3214..a604889085 100644 --- a/classJson_1_1Object_1_1Root__coll__graph.md5 +++ b/classJson_1_1Object_1_1Root__coll__graph.md5 @@ -1 +1 @@ -7c527dc0e4f19e958e2087a468bea3b2 \ No newline at end of file +ee794542f01c236fe5dd8000fed93e26 \ No newline at end of file diff --git a/classJson_1_1Object_1_1Root__coll__graph.png b/classJson_1_1Object_1_1Root__coll__graph.png index 741758a2d2..c067b8e26e 100644 Binary files a/classJson_1_1Object_1_1Root__coll__graph.png and b/classJson_1_1Object_1_1Root__coll__graph.png differ diff --git a/classJson_1_1Object__coll__graph.map b/classJson_1_1Object__coll__graph.map index 8b07c7589f..7203e0df2a 100644 --- a/classJson_1_1Object__coll__graph.map +++ b/classJson_1_1Object__coll__graph.map @@ -1,11 +1,11 @@ - - - - - - - + + + + + + + diff --git a/classJson_1_1Object__coll__graph.md5 b/classJson_1_1Object__coll__graph.md5 index f6d4639d12..9c381fb2fe 100644 --- a/classJson_1_1Object__coll__graph.md5 +++ b/classJson_1_1Object__coll__graph.md5 @@ -1 +1 @@ -d86da048b40c6e613c1882c9aa078bd3 \ No newline at end of file +83094d8fbf346f1219e8d0c0771b189e \ No newline at end of file diff --git a/classJson_1_1Object__coll__graph.png b/classJson_1_1Object__coll__graph.png index 5a58bfdb41..ef96dbcf2a 100644 Binary files a/classJson_1_1Object__coll__graph.png and b/classJson_1_1Object__coll__graph.png differ diff --git a/classJson_1_1Reader.html b/classJson_1_1Reader.html index 8c3c6f20ee..18f3d483de 100644 --- a/classJson_1_1Reader.html +++ b/classJson_1_1Reader.html @@ -95,14 +95,14 @@ Collaboration diagram for Json::Reader:
Collaboration graph
- - + + - + diff --git a/classJson_1_1Reader__coll__graph.map b/classJson_1_1Reader__coll__graph.map index 271ac8dd4b..8d22ac2c1b 100644 --- a/classJson_1_1Reader__coll__graph.map +++ b/classJson_1_1Reader__coll__graph.map @@ -1,12 +1,12 @@ - - + + - + diff --git a/classJson_1_1Reader__coll__graph.md5 b/classJson_1_1Reader__coll__graph.md5 index 7e9bb4086c..154ad03f4f 100644 --- a/classJson_1_1Reader__coll__graph.md5 +++ b/classJson_1_1Reader__coll__graph.md5 @@ -1 +1 @@ -7d2dcf52e6f775f709d529e2ed64a190 \ No newline at end of file +6cda88a86795c4bf1e1c2f2dec4e5f2d \ No newline at end of file diff --git a/classJson_1_1Reader__coll__graph.png b/classJson_1_1Reader__coll__graph.png index 8f831172a7..951c5096f2 100644 Binary files a/classJson_1_1Reader__coll__graph.png and b/classJson_1_1Reader__coll__graph.png differ diff --git a/classJson_1_1Writer.html b/classJson_1_1Writer.html index 56d4aa8e98..e9d45a5442 100644 --- a/classJson_1_1Writer.html +++ b/classJson_1_1Writer.html @@ -93,11 +93,11 @@ Collaboration diagram for Json::Writer:
Collaboration graph
- - - - - + + + + + diff --git a/classJson_1_1WriterObject.html b/classJson_1_1WriterObject.html index 37a7357e1d..f294136123 100644 --- a/classJson_1_1WriterObject.html +++ b/classJson_1_1WriterObject.html @@ -90,21 +90,21 @@ Collaboration diagram for Json::WriterObject:
Collaboration graph
- - - - - - - - + + + + + + + + - - - + + +
[legend]
diff --git a/classJson_1_1WriterObject__coll__graph.map b/classJson_1_1WriterObject__coll__graph.map index 716563c243..dd1385dd7f 100644 --- a/classJson_1_1WriterObject__coll__graph.map +++ b/classJson_1_1WriterObject__coll__graph.map @@ -1,17 +1,17 @@ - - - - - - - - + + + + + + + + - - - + + + diff --git a/classJson_1_1WriterObject__coll__graph.md5 b/classJson_1_1WriterObject__coll__graph.md5 index c22745d600..1803fa1a16 100644 --- a/classJson_1_1WriterObject__coll__graph.md5 +++ b/classJson_1_1WriterObject__coll__graph.md5 @@ -1 +1 @@ -1612f5afe4f15e7e78539ed0f1929df1 \ No newline at end of file +0d8d1792eaf7f1bf8a3cb5c9ccf403c1 \ No newline at end of file diff --git a/classJson_1_1WriterObject__coll__graph.png b/classJson_1_1WriterObject__coll__graph.png index 6f65ae09a6..ab50b9bb4e 100644 Binary files a/classJson_1_1WriterObject__coll__graph.png and b/classJson_1_1WriterObject__coll__graph.png differ diff --git a/classJson_1_1Writer_1_1Impl.html b/classJson_1_1Writer_1_1Impl.html index c0bf7adb82..2632bf2f9d 100644 --- a/classJson_1_1Writer_1_1Impl.html +++ b/classJson_1_1Writer_1_1Impl.html @@ -87,9 +87,9 @@ Collaboration diagram for Json::Writer::Impl:
Collaboration graph
- - - + + + diff --git a/classJson_1_1Writer_1_1Impl__coll__graph.map b/classJson_1_1Writer_1_1Impl__coll__graph.map index 1f3de1dcc0..810030074b 100644 --- a/classJson_1_1Writer_1_1Impl__coll__graph.map +++ b/classJson_1_1Writer_1_1Impl__coll__graph.map @@ -1,7 +1,7 @@ - - - + + + diff --git a/classJson_1_1Writer_1_1Impl__coll__graph.md5 b/classJson_1_1Writer_1_1Impl__coll__graph.md5 index bd37488fb5..c533b14d3c 100644 --- a/classJson_1_1Writer_1_1Impl__coll__graph.md5 +++ b/classJson_1_1Writer_1_1Impl__coll__graph.md5 @@ -1 +1 @@ -003661d367f5ab59f6ca4df615961c92 \ No newline at end of file +603835ef65884a492540862a32faedfe \ No newline at end of file diff --git a/classJson_1_1Writer_1_1Impl__coll__graph.png b/classJson_1_1Writer_1_1Impl__coll__graph.png index 110a98a966..80692d63fd 100644 Binary files a/classJson_1_1Writer_1_1Impl__coll__graph.png and b/classJson_1_1Writer_1_1Impl__coll__graph.png differ diff --git a/classJson_1_1Writer__coll__graph.map b/classJson_1_1Writer__coll__graph.map index 0109825933..25ddcb0d20 100644 --- a/classJson_1_1Writer__coll__graph.map +++ b/classJson_1_1Writer__coll__graph.map @@ -1,9 +1,9 @@ - - - - - + + + + + diff --git a/classJson_1_1Writer__coll__graph.md5 b/classJson_1_1Writer__coll__graph.md5 index 8f1c535868..a3bd4a1d75 100644 --- a/classJson_1_1Writer__coll__graph.md5 +++ b/classJson_1_1Writer__coll__graph.md5 @@ -1 +1 @@ -e54ec13525deaf9f2900dce9cc00d848 \ No newline at end of file +d89aae9319480a24a07b638e07b16613 \ No newline at end of file diff --git a/classJson_1_1Writer__coll__graph.png b/classJson_1_1Writer__coll__graph.png index 5cd05db979..9e6f81d4b2 100644 Binary files a/classJson_1_1Writer__coll__graph.png and b/classJson_1_1Writer__coll__graph.png differ diff --git a/classbeast_1_1basic__logstream-members.html b/classbeast_1_1basic__logstream-members.html index 67522d6717..5315614970 100644 --- a/classbeast_1_1basic__logstream-members.html +++ b/classbeast_1_1basic__logstream-members.html @@ -106,30 +106,31 @@ $(function() {
- - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + +
operator bool(T... args)std::basic_ostream< Char >
operator!(T... args)std::basic_ostream< Char >
operator<<(T... args)std::basic_ostream< Char >
pos_type typedefbeast::basic_logstream< CharT, Traits >private
precision(T... args)std::basic_ostream< Char >
put(T... args)std::basic_ostream< Char >
pword(T... args)std::basic_ostream< Char >
rdbuf(T... args)std::basic_ostream< Char >
rdstate(T... args)std::basic_ostream< Char >
register_callback(T... args)std::basic_ostream< Char >
seekp(T... args)std::basic_ostream< Char >
set_rdbuf(T... args)std::basic_ostream< Char >
setf(T... args)std::basic_ostream< Char >
setstate(T... args)std::basic_ostream< Char >
swap(T... args)std::basic_ostream< Char >
sync_with_stdio(T... args)std::basic_ostream< Char >
tellp(T... args)std::basic_ostream< Char >
tie(T... args)std::basic_ostream< Char >
traits_type typedefbeast::basic_logstream< CharT, Traits >private
unsetf(T... args)std::basic_ostream< Char >
widen(T... args)std::basic_ostream< Char >
width(T... args)std::basic_ostream< Char >
write(T... args)std::basic_ostream< Char >
xalloc(T... args)std::basic_ostream< Char >
~basic_ios(T... args)std::basic_ios< Char >
~basic_ostream(T... args)std::basic_ostream< Char >
~ios_base(T... args)std::ios_base
operator=(T... args)std::basic_ostream< Char >
pos_type typedefbeast::basic_logstream< CharT, Traits >private
precision(T... args)std::basic_ostream< Char >
put(T... args)std::basic_ostream< Char >
pword(T... args)std::basic_ostream< Char >
rdbuf(T... args)std::basic_ostream< Char >
rdstate(T... args)std::basic_ostream< Char >
register_callback(T... args)std::basic_ostream< Char >
seekp(T... args)std::basic_ostream< Char >
set_rdbuf(T... args)std::basic_ostream< Char >
setf(T... args)std::basic_ostream< Char >
setstate(T... args)std::basic_ostream< Char >
swap(T... args)std::basic_ostream< Char >
sync_with_stdio(T... args)std::basic_ostream< Char >
tellp(T... args)std::basic_ostream< Char >
tie(T... args)std::basic_ostream< Char >
traits_type typedefbeast::basic_logstream< CharT, Traits >private
unsetf(T... args)std::basic_ostream< Char >
widen(T... args)std::basic_ostream< Char >
width(T... args)std::basic_ostream< Char >
write(T... args)std::basic_ostream< Char >
xalloc(T... args)std::basic_ostream< Char >
~basic_ios(T... args)std::basic_ios< Char >
~basic_ostream(T... args)std::basic_ostream< Char >
~ios_base(T... args)std::ios_base