remove STInt64 (#5815)

This commit is contained in:
Mayukha Vadari
2025-09-29 15:43:10 -04:00
committed by GitHub
parent a865b4da1c
commit 8d266d3941
7 changed files with 0 additions and 76 deletions

View File

@@ -359,7 +359,6 @@ using SF_UINT384 = TypedField<STBitString<384>>;
using SF_UINT512 = TypedField<STBitString<512>>;
using SF_INT32 = TypedField<STInteger<std::int32_t>>;
using SF_INT64 = TypedField<STInteger<std::int64_t>>;
using SF_ACCOUNT = TypedField<STAccount>;
using SF_AMOUNT = TypedField<STAmount>;

View File

@@ -82,7 +82,6 @@ using STUInt32 = STInteger<std::uint32_t>;
using STUInt64 = STInteger<std::uint64_t>;
using STInt32 = STInteger<std::int32_t>;
using STInt64 = STInteger<std::int64_t>;
template <typename Integer>
inline STInteger<Integer>::STInteger(Integer v) : value_(v)

View File

@@ -233,8 +233,6 @@ public:
getFieldH256(SField const& field) const;
std::int32_t
getFieldI32(SField const& field) const;
std::int64_t
getFieldI64(SField const& field) const;
AccountID
getAccountID(SField const& field) const;
@@ -371,8 +369,6 @@ public:
void
setFieldI32(SField const& field, std::int32_t);
void
setFieldI64(SField const& field, std::int64_t);
void
setFieldVL(SField const& field, Blob const&);
void
setFieldVL(SField const& field, Slice const&);