fix unix path on IOSU/PDM

With PR #52 this path was missed
This commit is contained in:
Alexey Varfolomeev 2022-08-26 08:10:27 +04:00
parent 974edaa649
commit 2a5c754609

View file

@ -6,7 +6,7 @@
#if BOOST_OS_LINUX
// using chrono::year_month_date and other features require a relatively recent stdlibc++
// to avoid upping the required version we use the STL reference implementation for now
#include "Common/linux/date.h"
#include "Common/unix/date.h"
namespace chrono_d = date;
#else
namespace chrono_d = std::chrono;