2
0
mirror of https://github.com/PerMalmberg/libcron.git synced 2024-12-15 09:59:51 +08:00

Disable warning in date.h

This commit is contained in:
Per Malmberg 2019-02-12 09:05:41 +01:00
parent 448d01eef0
commit 4a4cbd47aa

View File

@ -2,7 +2,15 @@
#include "CronData.h"
#include <chrono>
#ifdef _WIN32
#pragma warning(push)
#pragma warning(disable:4244)
#endif
#include <date/date.h>
#ifdef _WIN32
#pragma warning(pop)
#endif
#include "DateTime.h"
namespace libcron