Skip to content

Commit ee92e74

Browse files
committed
Fix missing class decimalXX {
1 parent 158b491 commit ee92e74

File tree

6 files changed

+24
-0
lines changed

6 files changed

+24
-0
lines changed

doc/decimal/decimal128.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ The encoding of Decimal128 is in the <<conversions, BID format>>.
2828
namespace boost {
2929
namespace decimal {
3030
31+
class decimal128 {
32+
3133
// Paragraph numbers are from ISO/IEC DTR 24733
3234
3335
// 3.2.4.1 construct/copy/destroy
@@ -85,6 +87,8 @@ explicit constexpr operator std::bfloat16_t() const noexcept;
8587
explicit constexpr operator decimal32() const noexcept;
8688
explicit constexpr operator decimal64() const noexcept;
8789
90+
}; // class decimal128
91+
8892
} //namespace decimal
8993
} //namespace boost
9094

doc/decimal/decimal128_fast.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ As is often the case this trades space for time by having greater storage width
2828
namespace boost {
2929
namespace decimal {
3030
31+
class decimal128_fast {
32+
3133
// Paragraph numbers are from ISO/IEC DTR 24733
3234
3335
// 3.2.4.1 construct/copy/destroy
@@ -85,6 +87,8 @@ explicit constexpr operator std::bfloat16_t() const noexcept;
8587
explicit constexpr operator decimal32() const noexcept;
8688
explicit constexpr operator decimal64() const noexcept;
8789
90+
}; // class decimal128_fast
91+
8892
} //namespace decimal
8993
} //namespace boost
9094

doc/decimal/decimal32.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ The encoding of Decimal32 is in the <<conversions, BID format>>.
2828
namespace boost {
2929
namespace decimal {
3030
31+
class decimal32 {
32+
3133
// Paragraph numbers are from ISO/IEC DTR 24733
3234
3335
// 3.2.2.1 construct/copy/destroy
@@ -85,6 +87,8 @@ explicit constexpr operator std::bfloat16_t() const noexcept;
8587
explicit constexpr operator decimal64() const noexcept;
8688
explicit constexpr operator decimal128() const noexcept;
8789
90+
}; // class decimal32
91+
8892
} //namespace decimal
8993
} //namespace boost
9094

doc/decimal/decimal32_fast.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ As is often the case this trades space for time by having greater storage width
2828
namespace boost {
2929
namespace decimal {
3030
31+
class decimal32_fast {
32+
3133
// Paragraph numbers are from ISO/IEC DTR 24733
3234
3335
// 3.2.2.1 construct/copy/destroy
@@ -85,6 +87,8 @@ explicit constexpr operator std::bfloat16_t() const noexcept;
8587
explicit constexpr operator decimal64() const noexcept;
8688
explicit constexpr operator decimal128() const noexcept;
8789
90+
}; // class decimal32_fast
91+
8892
} //namespace decimal
8993
} //namespace boost
9094

doc/decimal/decimal64.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ The encoding of Decimal64 is in the <<conversions, BID format>>.
2828
namespace boost {
2929
namespace decimal {
3030
31+
class decimal64 {
32+
3133
// Paragraph numbers are from ISO/IEC DTR 24733
3234
3335
// 3.2.3.1 construct/copy/destroy
@@ -85,6 +87,8 @@ explicit constexpr operator std::bfloat16_t() const noexcept;
8587
explicit constexpr operator decimal32() const noexcept;
8688
explicit constexpr operator decimal128() const noexcept;
8789
90+
}; // class decimal64
91+
8892
} //namespace decimal
8993
} //namespace boost
9094

doc/decimal/decimal64_fast.adoc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ As is often the case this trades space for time by having greater storage width
2828
namespace boost {
2929
namespace decimal {
3030
31+
class decimal64_fast {
32+
3133
// Paragraph numbers are from ISO/IEC DTR 24733
3234
3335
// 3.2.3.1 construct/copy/destroy
@@ -85,6 +87,8 @@ explicit constexpr operator std::bfloat16_t() const noexcept;
8587
explicit constexpr operator decimal32() const noexcept;
8688
explicit constexpr operator decimal128() const noexcept;
8789
90+
}; // class decimal64_fast
91+
8892
} //namespace decimal
8993
} //namespace boost
9094

0 commit comments

Comments
 (0)