Skip to content

Commit

Permalink
Cxx: Fix .NET API
Browse files Browse the repository at this point in the history
  • Loading branch information
agdavydov81 committed Apr 5, 2024
1 parent 4dc12a4 commit 6e8863a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion native/src/NativeImpl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 6e8863a

Please sign in to comment.