Parcourir la source

Fix double-format

default_compile_flags
vector-of-bool il y a 3 ans
Parent
révision
65aafb2dcc
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      src/dds/error/errors.hpp

+ 1
- 1
src/dds/error/errors.hpp Voir le fichier

@@ -118,7 +118,7 @@ auto make_external_error() {

template <errc ErrorCode, typename... Args>
[[noreturn]] void throw_external_error(std::string_view fmt_str, Args&&... args) {
throw make_external_error<ErrorCode>(fmt::format(fmt_str, std::forward<Args>(args)...));
throw make_external_error<ErrorCode>(fmt_str, std::forward<Args>(args)...);
}

template <errc ErrorCode>

Chargement…
Annuler
Enregistrer