Skip to content

Commit

Permalink
fix: Typo in dual.h made invalid template DualStorage (#1871)
Browse files Browse the repository at this point in the history
Signed-off-by: Larry Gritz <[email protected]>
  • Loading branch information
lgritz committed Sep 23, 2024
1 parent 00473ce commit d8c6f9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/include/OSL/dual.h
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ class DualStorage<T, 3>
: m_val(other.m_val)
, m_dx(other.m_dx)
, m_dy(other.m_dy)
, m_dz(other.dz)
, m_dz(other.m_dz)
{}

OSL_HOSTDEVICE constexpr const T& elem (ConstIndex<0>) const { return m_val; }
Expand Down

0 comments on commit d8c6f9a

Please sign in to comment.