Skip to content

Commit 05d5fa0

Browse files
authored
CMake: Fix Typo AMReX_COMPILER_DEFAULT_INLINE (#4590)
## Summary Option had no effect because it was always false. ## Additional background ## Checklist The proposed changes: - [x] fix a bug or incorrect behavior in AMReX - [ ] add new capabilities to AMReX - [ ] changes answers in the test suite to more than roundoff level - [ ] are likely to significantly affect the results of downstream AMReX users - [ ] include documentation in the code and/or rst files, if appropriate
1 parent eb80c09 commit 05d5fa0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Src/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ foreach(D IN LISTS AMReX_SPACEDIM)
8686
)
8787
endif ()
8888

89-
if (NOT AMReX_COMPILER_DEFULT_INLINE)
89+
if (NOT AMReX_COMPILER_DEFAULT_INLINE)
9090
target_link_libraries(amrex_${D}d
9191
PUBLIC
9292
$<BUILD_INTERFACE:Flags_INLINE>

0 commit comments

Comments
 (0)