Skip to content

Commit d8d51da

Browse files
committed
Fix compilation error for gpu.chain(ot)
1 parent 87ba3d4 commit d8d51da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mips/psyqo/gpu.hh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -351,8 +351,8 @@ class GPU {
351351
*
352352
* @param table The ordering table to chain.
353353
*/
354-
template <size_t N>
355-
void chain(OrderingTable<N> &table) {
354+
template <size_t N, Safe safety = Safe::Yes>
355+
void chain(OrderingTable<N, safety> &table) {
356356
chain(&table.m_table[N], &table.m_table[0], 0);
357357
scheduleOTC(&table.m_table[N], N + 1);
358358
}

0 commit comments

Comments
 (0)