Browse Source

compat: fix -std=gnu++20

dev
Maxim Prokhorov 3 months ago
parent
commit
f13df63f38
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      code/espurna/compat.h

+ 1
- 1
code/espurna/compat.h View File

@ -102,7 +102,7 @@ using std::isnan;
namespace std {
#if __cplusplus < 202002L
#if !defined(__cpp_lib_remove_cvref) && (__cplusplus < 202002L)
template <typename T>
using remove_cvref = typename std::remove_cv<std::remove_reference<T>>::type;
#endif


Loading…
Cancel
Save