Skip to content

Commit

Permalink
Fix MSVC build
Browse files Browse the repository at this point in the history
Introduced in d855aba (!3673)
  • Loading branch information
al42and authored and mabraham committed Nov 13, 2023
1 parent 34c0358 commit 9c86b82
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/gromacs/nbnxm/tests/kernel_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -781,12 +781,12 @@ void registerTestsDynamically()
CoulombKernelType::TableTwin
#endif
),
::testing::Values(vdwktLJCUT_COMBGEOM,
vdwktLJCUT_COMBLB,
vdwktLJCUT_COMBNONE,
vdwktLJFORCESWITCH,
vdwktLJPOTSWITCH,
vdwktLJEWALDCOMBGEOM)));
::testing::Values(static_cast<int>(vdwktLJCUT_COMBGEOM),
static_cast<int>(vdwktLJCUT_COMBLB),
static_cast<int>(vdwktLJCUT_COMBNONE),
static_cast<int>(vdwktLJFORCESWITCH),
static_cast<int>(vdwktLJPOTSWITCH),
static_cast<int>(vdwktLJEWALDCOMBGEOM))));

registerTests<NbnxmKernelTest, NbnxmKernelTestBody, decltype(testCombinations)>(
"NbnxmKernelTest", nameOfTest, fullNameOfTest, testCombinations);
Expand Down

0 comments on commit 9c86b82

Please sign in to comment.