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 7596166 commit c6b89aaCopy full SHA for c6b89aa
libmamba/include/mamba/core/logging.hpp
@@ -71,7 +71,8 @@ namespace mamba
71
}
72
73
/// @returns All `log_source` values as a range.
74
- inline constexpr auto all_log_sources() noexcept -> std::initializer_list<log_source>
+ // FIXME: should be constexpr but some compilers dont implement vector's constexpr destructor yet
75
+ inline auto all_log_sources() noexcept -> std::vector<log_source>
76
{
77
return { log_source::libmamba, log_source::libcurl, log_source::libsolv };
78
0 commit comments