Skip to content

Commit 660831d

Browse files
authored
Merge pull request #569 from cppalliance/literals
Delete operator"" (long double)
2 parents 32b369e + e84eb98 commit 660831d

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

include/boost/decimal/literals.hpp

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -58,16 +58,6 @@ BOOST_DECIMAL_EXPORT constexpr auto operator "" _df(unsigned long long v) -> de
5858
return decimal32{v};
5959
}
6060

61-
BOOST_DECIMAL_EXPORT BOOST_DECIMAL_CXX20_CONSTEXPR auto operator "" _DF(long double v) -> decimal32
62-
{
63-
return decimal32{v};
64-
}
65-
66-
BOOST_DECIMAL_EXPORT BOOST_DECIMAL_CXX20_CONSTEXPR auto operator "" _df(long double v) -> decimal32
67-
{
68-
return decimal32{v};
69-
}
70-
7161
BOOST_DECIMAL_EXPORT constexpr auto operator "" _DD(const char* str) -> decimal64
7262
{
7363
decimal64 d;
@@ -106,16 +96,6 @@ BOOST_DECIMAL_EXPORT constexpr auto operator "" _dd(unsigned long long v) -> de
10696
return decimal64{v};
10797
}
10898

109-
BOOST_DECIMAL_EXPORT BOOST_DECIMAL_CXX20_CONSTEXPR auto operator "" _DD(long double v) -> decimal64
110-
{
111-
return decimal64{v};
112-
}
113-
114-
BOOST_DECIMAL_EXPORT BOOST_DECIMAL_CXX20_CONSTEXPR auto operator "" _dd(long double v) -> decimal64
115-
{
116-
return decimal64{v};
117-
}
118-
11999
BOOST_DECIMAL_EXPORT constexpr auto operator "" _DL(const char* str) -> decimal128
120100
{
121101
decimal128 d;
@@ -154,16 +134,6 @@ BOOST_DECIMAL_EXPORT constexpr auto operator "" _dl(unsigned long long v) -> de
154134
return decimal128{v};
155135
}
156136

157-
BOOST_DECIMAL_EXPORT BOOST_DECIMAL_CXX20_CONSTEXPR auto operator "" _DL(long double v) -> decimal128
158-
{
159-
return decimal128{v};
160-
}
161-
162-
BOOST_DECIMAL_EXPORT BOOST_DECIMAL_CXX20_CONSTEXPR auto operator "" _dl(long double v) -> decimal128
163-
{
164-
return decimal128{v};
165-
}
166-
167137
} // namespace decimal
168138
} // namespace boost
169139

0 commit comments

Comments
 (0)