Skip to content

Commit

Permalink
fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
oathdruid committed Sep 19, 2024
1 parent 35e3dba commit 8658c98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ include(CTest) # for BUILD_TESTING option
include(CMakePackageConfigHelpers) # for write_basic_package_version_file

option(BUILD_DEPS "Use FetchContent download and build dependencies" OFF)
set(BUILD_TESTING ON)

if(BUILD_DEPS)
include(FetchContent)
Expand Down
2 changes: 2 additions & 0 deletions src/babylon/time.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ int FastLocalTimeConverter::to_weekday(::absl::CivilSecond civil) noexcept {
return 5;
case ::absl::Weekday::saturday:
return 6;
default:
break;
}
::abort();
}
Expand Down

0 comments on commit 8658c98

Please sign in to comment.