File: Common.h

package info (click to toggle)
plog 1.1.11-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,404 kB
  • sloc: cpp: 13,637; ansic: 473; sh: 24; makefile: 4
file content (16 lines) | stat: -rw-r--r-- 378 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#pragma once

#if defined(__cpp_constexpr) && (!defined(__MINGW32__) || defined(__MINGW64_VERSION_MAJOR))
#   include "doctest/2.4.11/doctest.h"  // C++11 and higher
#else
#   include "doctest/1.2.9/doctest.h"   // pre C++11
#endif

#include <plog/Log.h>
#include "TestAppender.h"

#ifdef __has_include
#   if __has_include(<version>)
#       include <version>
#   endif
#endif