Skip to content

Commit

Permalink
[MISC] automatic linting
Browse files Browse the repository at this point in the history
  • Loading branch information
seqan-actions committed Dec 6, 2024
1 parent 4afd120 commit d240bc6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
9 changes: 6 additions & 3 deletions cmake/seqan3-config.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -354,9 +354,12 @@ try_compile (SEQAN3_PLATFORM_TEST #
CMAKE_FLAGS "-DINCLUDE_DIRECTORIES:STRING=${CMAKE_INCLUDE_PATH};${SEQAN3_INCLUDE_DIR};${SEQAN3_DEPENDENCY_INCLUDE_DIRS}"
COMPILE_DEFINITIONS ${SEQAN3_DEFINITIONS}
LINK_LIBRARIES ${SEQAN3_LIBRARIES}
CXX_STANDARD 23
CXX_STANDARD_REQUIRED ON
CXX_EXTENSIONS OFF
CXX_STANDARD
23
CXX_STANDARD_REQUIRED
ON
CXX_EXTENSIONS
OFF
OUTPUT_VARIABLE SEQAN3_PLATFORM_TEST_OUTPUT)

if (SEQAN3_PLATFORM_TEST)
Expand Down
2 changes: 1 addition & 1 deletion include/seqan3/core/platform.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@
# error "At least GCC 12 is needed."
#endif

#if defined(__INTEL_LLVM_COMPILER) && (__INTEL_LLVM_COMPILER < 20240000)
#if defined(__INTEL_LLVM_COMPILER) && (__INTEL_LLVM_COMPILER < 20'240'000)
# error "At least Intel OneAPI 2024 is needed."
#endif

Expand Down

0 comments on commit d240bc6

Please sign in to comment.