We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3dd707f commit b0ac8dfCopy full SHA for b0ac8df
libmamba/src/core/util_os.cpp
@@ -508,7 +508,7 @@ namespace mamba
508
#else
509
510
CONSOLE_SCREEN_BUFFER_INFO coninfo;
511
- auto res[[maybe_unused]] = GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &coninfo);
+ auto res [[maybe_unused]] = GetConsoleScreenBufferInfo(GetStdHandle(STD_OUTPUT_HANDLE), &coninfo);
512
return coninfo.srWindow.Bottom - coninfo.srWindow.Top + 1;
513
#endif
514
}
libmamba/src/solver/libsolv/helpers.cpp
@@ -1676,7 +1676,7 @@ namespace mamba::solver::libsolv
1676
1677
else
1678
{
1679
- assert(false); // TODO c++23: replace by `std::unreachable();`
+ assert(false); // TODO c++23: replace by `std::unreachable();`
1680
return {};
1681
1682
0 commit comments