浏览代码

Fix double-format

default_compile_flags
vector-of-bool 3 年前
父节点
当前提交
65aafb2dcc
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      src/dds/error/errors.hpp

+ 1
- 1
src/dds/error/errors.hpp 查看文件

@@ -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>

正在加载...
取消
保存