Skip to content

Commit

Permalink
build: removed unused variable so webassembly can build
Browse files Browse the repository at this point in the history
  • Loading branch information
paxcut committed Oct 12, 2023
1 parent f5ceb92 commit 7ca28de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/builtin/source/content/tools_entries.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1802,7 +1802,7 @@ namespace hex::plugin::builtin {
// The main problem is that from_chars will not process special numbers
// like inf and nan, so we handle them manually.
static std::string decimalFloatingPointNumberString;
static std::string_view decimalStrView;

// Use qnan for quiet NaN and snan for signaling NaN.
if (ieee754.numberType == NumberType::NaN) {
if (ieee754.valueType == ValueType::QuietNaN)
Expand Down

0 comments on commit 7ca28de

Please sign in to comment.