File: main.cpp

package info (click to toggle)
spdlog 1%3A1.15.3%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,172 kB
  • sloc: cpp: 8,373; ansic: 2,774; sh: 43; makefile: 39; python: 12
file content (10 lines) | stat: -rw-r--r-- 276 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
#if defined(__GNUC__) && __GNUC__ == 12
    #pragma GCC diagnostic push
    #pragma GCC diagnostic ignored "-Wmaybe-uninitialized"  // Workaround for GCC 12
#endif

#include <catch2/catch_all.hpp>

#if defined(__GNUC__) && __GNUC__ == 12
    #pragma GCC diagnostic pop
#endif