for some reason [[maybe_unused]] is hated by buster 32 bit x86 so we do something else

to appease that compiler.
pull/1638/head
Jeff Becker 3 years ago
parent 18c5b43e63
commit acdb8a19a6
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -100,11 +100,12 @@ namespace llarp
template <typename... T>
struct LogTrace
{
LogTrace(
[[maybe_unused]] T... args,
[[maybe_unused]] const slns::source_location& location = slns::source_location::current())
LogTrace(T... args, const slns::source_location& location = slns::source_location::current())
{
#ifndef NDEBUG
#ifdef NDEBUG
const auto discard = [](auto&&...) {};
discard(location, std::forward<T>(args)...);
#else
_log(eLogTrace, location, std::forward<T>(args)...);
#endif
}
@ -116,11 +117,12 @@ namespace llarp
template <typename... T>
struct LogDebug
{
LogDebug(
[[maybe_unused]] T... args,
[[maybe_unused]] const slns::source_location& location = slns::source_location::current())
LogDebug(T... args, const slns::source_location& location = slns::source_location::current())
{
#ifndef NDEBUG
#ifdef NDEBUG
const auto discard = [](auto&&...) {};
discard(location, std::forward<T>(args)...);
#else
_log(eLogDebug, location, std::forward<T>(args)...);
#endif
}

Loading…
Cancel
Save