spdlog/tests/includes.h

23 lines
467 B
C
Raw Normal View History

2016-04-20 04:57:49 -04:00
#pragma once
#include <cstdio>
#include <fstream>
#include <string>
#include <ostream>
#include <chrono>
#include <exception>
2017-11-30 21:35:23 -05:00
// regex supported only from gcc 4.9 and above
#if !(__GNUC__ <= 4 && __GNUC_MINOR__ < 9)
#include <regex>
2017-11-30 21:35:23 -05:00
#endif
2016-04-20 04:57:49 -04:00
#include "catch.hpp"
#include "utils.h"
2017-11-06 05:39:04 -05:00
#define SPDLOG_TRACE_ON
#define SPDLOG_DEBUG_ON
2016-04-20 04:57:49 -04:00
#include "../include/spdlog/spdlog.h"
#include "../include/spdlog/sinks/null_sink.h"
#include "../include/spdlog/sinks/ostream_sink.h"