From ebcff2e319d6d6a04dc58f388e95bb47ddbfe4ae Mon Sep 17 00:00:00 2001 From: Alexey Varfolomeev Date: Fri, 26 Aug 2022 08:21:07 +0400 Subject: [PATCH] fix unix path on IOSU/PDM (#60) With PR #52 this path was missed --- src/Cafe/IOSU/PDM/iosu_pdm.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Cafe/IOSU/PDM/iosu_pdm.cpp b/src/Cafe/IOSU/PDM/iosu_pdm.cpp index 57e2c61d..626eba40 100644 --- a/src/Cafe/IOSU/PDM/iosu_pdm.cpp +++ b/src/Cafe/IOSU/PDM/iosu_pdm.cpp @@ -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; @@ -373,4 +373,4 @@ namespace iosu } }; -}; \ No newline at end of file +};