From 6e8863a41b850c890f325a05354d16b46fa9c3f0 Mon Sep 17 00:00:00 2001 From: Andrei Davydov Date: Fri, 5 Apr 2024 16:49:03 +0300 Subject: [PATCH] Cxx: Fix .NET API --- native/src/NativeImpl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/native/src/NativeImpl.c b/native/src/NativeImpl.c index df3d01c..4394e55 100644 --- a/native/src/NativeImpl.c +++ b/native/src/NativeImpl.c @@ -43,7 +43,7 @@ OPN(tryParse, dfp64_try_parse(str, exception), const char* str, uint32* exceptio OPNR(to_string, const char*, dfp64_to_string(x), BID_UINT64 x) OPNR(to_string_2, const char*, dfp64_to_string_2(x, decimalMark), BID_UINT64 x, char decimalMark) OPNR(to_string_3, const char*, dfp64_to_string_3(x, decimalMark, buffer512), BID_UINT64 x, char decimalMark, char* buffer512) -OPNR(to_string_4, const char*, dfp64_to_string_4(x, decimalMark, buffer512, floatStyle), BID_UINT64 x, char decimalMark, char* buffer512, bool floatStyle) +OPNR(to_string_4, const char*, dfp64_to_string_4(x, decimalMark, buffer512, floatStyle), BID_UINT64 x, char decimalMark, char* buffer512, int32 floatStyle) OPNR(to_scientific_string, const char*, dfp64_to_scientific_string(x), BID_UINT64 x) OPNR(to_scientific_string_2, const char*, dfp64_to_scientific_string_2(x, decimalMark), BID_UINT64 x, char decimalMark)