refactor: Rename ripple namespace to xrpl

This commit is contained in:
Bart
2025-11-10 11:49:19 -05:00
parent 7141781db4
commit 09c61d6fc4
1235 changed files with 3810 additions and 3823 deletions

View File

@@ -11,7 +11,7 @@
#include <cstddef>
#include <optional>
namespace ripple {
namespace xrpl {
class STPathElement final : public CountedObject<STPathElement>
{
@@ -241,7 +241,7 @@ inline STPathElement::STPathElement(
mType |= typeAccount;
XRPL_ASSERT(
mAccountID != noAccount(),
"ripple::STPathElement::STPathElement : account is set");
"xrpl::STPathElement::STPathElement : account is set");
}
if (currency)
@@ -256,7 +256,7 @@ inline STPathElement::STPathElement(
mType |= typeIssuer;
XRPL_ASSERT(
mIssuerID != noAccount(),
"ripple::STPathElement::STPathElement : issuer is set");
"xrpl::STPathElement::STPathElement : issuer is set");
}
hash_value_ = get_hash(*this);
@@ -504,6 +504,6 @@ STPathSet::emplace_back(Args&&... args)
value.emplace_back(std::forward<Args>(args)...);
}
} // namespace ripple
} // namespace xrpl
#endif