aboutsummaryrefslogtreecommitdiff
path: root/include/cru/common/platform/unix/ErrnoException.h
blob: 97edcc7899c131450bdb322476a243c0578fa4e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#pragma once

#include "../../PreConfig.h"

#ifdef CRU_PLATFORM_UNIX

#include "../Exception.h"

namespace cru::platform::unix {
// Moved to Exception.h
using ErrnoException = cru::ErrnoException;
}  // namespace cru::platform::unix

#endif