Skip to content

Commit d99761b

Browse files
committed
Remove unsigned long long overloads
1 parent 5d1bd64 commit d99761b

File tree

1 file changed

+0
-60
lines changed

1 file changed

+0
-60
lines changed

include/boost/decimal/literals.hpp

Lines changed: 0 additions & 60 deletions
Original file line numberDiff line numberDiff line change
@@ -55,16 +55,6 @@ BOOST_DECIMAL_EXPORT constexpr auto operator ""_df(const char *str, const std::s
5555
return d;
5656
}
5757

58-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DF(const unsigned long long v) -> decimal32_t
59-
{
60-
return decimal32_t {v};
61-
}
62-
63-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_df(const unsigned long long v) -> decimal32_t
64-
{
65-
return decimal32_t {v};
66-
}
67-
6858
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DFF(const char *str) -> decimal_fast32_t
6959
{
7060
decimal_fast32_t d;
@@ -93,16 +83,6 @@ BOOST_DECIMAL_EXPORT constexpr auto operator ""_dff(const char *str, const std::
9383
return d;
9484
}
9585

96-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DFF(const unsigned long long v) -> decimal_fast32_t
97-
{
98-
return decimal_fast32_t {v};
99-
}
100-
101-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_dff(const unsigned long long v) -> decimal_fast32_t
102-
{
103-
return decimal_fast32_t {v};
104-
}
105-
10686
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DD(const char *str) -> decimal64_t
10787
{
10888
decimal64_t d;
@@ -131,16 +111,6 @@ BOOST_DECIMAL_EXPORT constexpr auto operator ""_dd(const char *str, std::size_t)
131111
return d;
132112
}
133113

134-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DD(const unsigned long long v) -> decimal64_t
135-
{
136-
return decimal64_t {v};
137-
}
138-
139-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_dd(const unsigned long long v) -> decimal64_t
140-
{
141-
return decimal64_t {v};
142-
}
143-
144114
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DDF(const char *str) -> decimal_fast64_t
145115
{
146116
decimal_fast64_t d;
@@ -169,16 +139,6 @@ BOOST_DECIMAL_EXPORT constexpr auto operator ""_ddf(const char *str, const std::
169139
return d;
170140
}
171141

172-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DDF(const unsigned long long v) -> decimal_fast64_t
173-
{
174-
return decimal_fast64_t {v};
175-
}
176-
177-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_ddf(const unsigned long long v) -> decimal_fast64_t
178-
{
179-
return decimal_fast64_t {v};
180-
}
181-
182142
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DL(const char *str) -> decimal128_t
183143
{
184144
decimal128_t d;
@@ -207,16 +167,6 @@ BOOST_DECIMAL_EXPORT constexpr auto operator ""_dl(const char *str, std::size_t)
207167
return d;
208168
}
209169

210-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DL(const unsigned long long v) -> decimal128_t
211-
{
212-
return decimal128_t {v};
213-
}
214-
215-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_dl(const unsigned long long v) -> decimal128_t
216-
{
217-
return decimal128_t {v};
218-
}
219-
220170
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DLF(const char *str) -> decimal_fast128_t
221171
{
222172
decimal_fast128_t d;
@@ -245,16 +195,6 @@ BOOST_DECIMAL_EXPORT constexpr auto operator ""_dlf(const char *str, const std::
245195
return d;
246196
}
247197

248-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_DLF(const unsigned long long v) -> decimal_fast128_t
249-
{
250-
return decimal_fast128_t {v};
251-
}
252-
253-
BOOST_DECIMAL_EXPORT constexpr auto operator ""_dlf(const unsigned long long v) -> decimal_fast128_t
254-
{
255-
return decimal_fast128_t {v};
256-
}
257-
258198
} // namespace literals
259199
} // namespace decimal
260200
} // namespace boost

0 commit comments

Comments
 (0)