Fix memset build error

Moved #include <cstring> to catch_reporter_bases.hpp
This commit is contained in:
Phil Nash 2014-12-22 07:42:25 +00:00
parent 576aff6085
commit a9f16b18f7
2 changed files with 2 additions and 2 deletions

View File

@ -10,6 +10,8 @@
#include "../internal/catch_interfaces_reporter.h"
#include <cstring>
namespace Catch {
struct StreamingReporterBase : SharedImpl<IStreamingReporter> {

View File

@ -13,8 +13,6 @@
#include "../internal/catch_reporter_registrars.hpp"
#include "../internal/catch_console_colour.hpp"
#include <cstring>
namespace Catch {
struct ConsoleReporter : StreamingReporterBase {