Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump deps/GSL from e64c97f to fcd55ee #1020

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Bump deps/GSL from e64c97f to fcd55ee
Bumps [deps/GSL](https://github.com/Microsoft/GSL) from `e64c97f` to `fcd55ee`.
- [Release notes](https://github.com/Microsoft/GSL/releases)
- [Commits](microsoft/GSL@e64c97f...fcd55ee)

---
updated-dependencies:
- dependency-name: deps/GSL
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] authored Dec 23, 2024
commit 26faace86e694654b21562402e52d6e20345b8d3

Unchanged files with check annotations Beta

auto* rgb_image = stbi_load_from_memory(reinterpret_cast<const uint8_t*>(image_data.data()), static_cast<int>(image_data.size()), &this->width, &this->height, &channels, 4);
if(!rgb_image)
{
throw std::runtime_error("Unable to load image");

Check failure on line 15 in src/common/utils/image.cpp

GitHub Actions / Build binaries (Debug)

'runtime_error': is not a member of 'std' [D:\a\h1-mod\h1-mod\build\common.vcxproj]

Check failure on line 15 in src/common/utils/image.cpp

GitHub Actions / Build binaries (Debug)

'runtime_error': identifier not found [D:\a\h1-mod\h1-mod\build\common.vcxproj]

Check failure on line 15 in src/common/utils/image.cpp

GitHub Actions / Build binaries (Release)

'runtime_error': is not a member of 'std' [D:\a\h1-mod\h1-mod\build\common.vcxproj]

Check failure on line 15 in src/common/utils/image.cpp

GitHub Actions / Build binaries (Release)

'runtime_error': identifier not found [D:\a\h1-mod\h1-mod\build\common.vcxproj]
}
auto _ = gsl::finally([rgb_image]()