Skip to content

Commit b70bdfe

Browse files
committed
Fix warning in actuator functors
1 parent d6816d7 commit b70bdfe

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/actuator/ActuatorFunctorsFAST.C

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ ActFastCacheRelativeVelocities(ActuatorBulkFAST& actBulk)
3232
const int turbId = actBulk.localTurbineId_;
3333

3434
Kokkos::parallel_for(
35-
"cache rel vel", range_policy, KOKKOS_LAMBDA(int i) {
35+
"cache rel vel", range_policy, ACTUATOR_LAMBDA(int i) {
3636
int index = i - offset(turbId);
3737
auto rV = Kokkos::subview(relVel, i, Kokkos::ALL);
3838
fast->getRelativeVelForceNode(rV.data(), index, turbId);

0 commit comments

Comments
 (0)