Skip to content

Commit

Permalink
One more.
Browse files Browse the repository at this point in the history
  • Loading branch information
shoops committed Nov 18, 2024
1 parent e9d6c81 commit 82fefbb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/NativeJIT/inc/NativeJIT/ExpressionTreeDecls.h
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,8 @@ namespace NativeJIT
class FreeListForRegister;

template <typename T>
using FreeListForType = class ExpressionTree::FreeListForRegister<RegisterStorage<T>::XXXXXXXXX>;
class FreeListForType : public ExpressionTree::FreeListForRegister<RegisterStorage<T>::c_isFloat>
{};

// The allocator and STL-compatible wrapper around it.
Allocators::IAllocator& m_allocator;
Expand Down
1 change: 0 additions & 1 deletion src/NativeJIT/inc/NativeJIT/TypePredicates.h
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,6 @@ namespace NativeJIT

static constexpr unsigned c_size = sizeof(UnderlyingType);
static constexpr bool c_isFloat = std::is_floating_point<UnderlyingType>::value;
static constexpr bool XXXXXXXXX = std::is_floating_point<UnderlyingType>::value;

typedef Register<c_size, c_isFloat> RegisterType;
};
Expand Down

0 comments on commit 82fefbb

Please sign in to comment.