Skip to content

Commit

Permalink
Fix compilation error for gpu.chain(ot)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliasdaler committed Jan 21, 2025
1 parent 87ba3d4 commit d8d51da
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/mips/psyqo/gpu.hh
Original file line number Diff line number Diff line change
Expand Up @@ -351,8 +351,8 @@ class GPU {
*
* @param table The ordering table to chain.
*/
template <size_t N>
void chain(OrderingTable<N> &table) {
template <size_t N, Safe safety = Safe::Yes>
void chain(OrderingTable<N, safety> &table) {
chain(&table.m_table[N], &table.m_table[0], 0);
scheduleOTC(&table.m_table[N], N + 1);
}
Expand Down

0 comments on commit d8d51da

Please sign in to comment.