Skip to content

Commit 2b29648

Browse files
committed
fix: ABI change warning when passing long double by value
Signed-off-by: Roberto Raggi <[email protected]>
1 parent 195fddf commit 2b29648

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/parser/cxx/const_value.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ namespace cxx {
3030

3131
using ConstValue =
3232
std::variant<bool, std::int32_t, std::uint32_t, std::int64_t, std::uint64_t,
33-
float, double, long double, const StringLiteral*>;
33+
const StringLiteral*, float, double, long double>;
3434

3535
template <typename T>
3636
struct ArithmeticConversion {

0 commit comments

Comments
 (0)