Compare commits

...

1 Commits

Author SHA1 Message Date
33e7322595 Update submodules; set submodule tracking branch 2021-04-06 12:46:56 -04:00
4 changed files with 7 additions and 5 deletions

2
.gitmodules vendored
View File

@@ -1,6 +1,8 @@
[submodule "fmt"]
path = fmt
url = https://github.com/fmtlib/fmt
branch = master
[submodule "sentry"]
path = sentry
url = https://github.com/getsentry/sentry-native.git
branch = master

2
fmt

Submodule fmt updated: 9bdd1596ce...95da484727

View File

@@ -236,7 +236,7 @@ public:
return;
_vreport(severity, fmt::to_string_view<Char>(format),
fmt::basic_format_args<fmt::buffer_context<Char>>(
fmt::internal::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
fmt::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
}
template <typename Char>
@@ -260,7 +260,7 @@ public:
return;
_vreportSource(severity, file, linenum, fmt::to_string_view<Char>(format),
fmt::basic_format_args<fmt::buffer_context<Char>>(
fmt::internal::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
fmt::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
}
template <typename Char>
@@ -319,5 +319,5 @@ void quicklog(const S& format, Args&&... args) {
logvisor::MainLoggers[0]->report(
"quick", logvisor::Info, fmt::to_string_view<Char>(format),
fmt::basic_format_args<fmt::buffer_context<Char>>(
fmt::internal::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
fmt::make_args_checked<Args...>(format, std::forward<Args>(args)...)));
}

2
sentry

Submodule sentry updated: aee5dc1a55...6d71367b17