Skip to content

Commit 486af6d

Browse files
committed
Fixes
1 parent b7f7169 commit 486af6d

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

include/nbl/system/to_string.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,7 @@ struct to_string_helper<hlsl::morton::code<Signed, Bits, D, _uint64_t>>
6565
using value_t = hlsl::morton::code<Signed, Bits, D, _uint64_t>;
6666
static std::string __call(value_t value)
6767
{
68-
TestValueToTextConverter<value_t::storage_t> mortonCodeDataToTextConverter;
69-
return mortonCodeDataToTextConverter(value.value);
68+
return to_string_helper<value_t::storage_t>::__call(value.value);
7069
}
7170
};
7271

0 commit comments

Comments
 (0)