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:
parent
448d01eef0
commit
4a4cbd47aa
@ -2,7 +2,15 @@
|
||||
|
||||
#include "CronData.h"
|
||||
#include <chrono>
|
||||
#include <date/date.h>
|
||||
#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
|
||||
|
Loading…
Reference in New Issue
Block a user