Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
  • Loading branch information
electroly committed Feb 15, 2024
1 parent 4a72a38 commit ce04aa6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build/scripts/depsDownload.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ function downloadFile {
}

# don't update these versions by hand. instead, run scripts/depsCheck.sh
ABSEIL_VERSION=95fdf6f2117eee7e15dd015b4e89068463f6c9af
ABSEIL_VERSION=7626bacbbc05bfeb03a09e5993934c9d2b80b9ba
BINUTILS_VERSION=2.42
BOOST_VERSION=1.84.0
CLI11_VERSION=2.4.1
Expand Down
2 changes: 1 addition & 1 deletion src/vm/date.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ static std::vector<std::vector<char>> _zoneInfoFiles{};
static void addStaticZoneInfoFile(const std::string& name, std::vector<char> data) {
const auto& storedData = _zoneInfoFiles.emplace_back(std::move(data));
std::string_view sv{ storedData.data(), storedData.size() };
absl::AddStaticZoneInfoFile(name, sv);
absl::LoadStaticZoneInfoFile(name, sv);
}

void initializeTzdb() {
Expand Down

0 comments on commit ce04aa6

Please sign in to comment.