Skip to content

Commit

Permalink
Add missing typename
Browse files Browse the repository at this point in the history
  • Loading branch information
jk-jeon committed Mar 28, 2024
1 parent a8d4ab1 commit 7e132a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/dragonbox/dragonbox.h
Original file line number Diff line number Diff line change
Expand Up @@ -1727,7 +1727,7 @@ namespace jkj {
// Compressed cache.
template <class FloatFormat, class Dummy = void>
struct compressed_cache_holder {
using cache_entry_type = cache_holder<FloatFormat>::cache_entry_type;
using cache_entry_type = typename cache_holder<FloatFormat>::cache_entry_type;
static constexpr int cache_bits = cache_holder<FloatFormat>::cache_bits;
static constexpr int min_k = cache_holder<FloatFormat>::min_k;
static constexpr int max_k = cache_holder<FloatFormat>::max_k;
Expand Down

0 comments on commit 7e132a6

Please sign in to comment.