header_utils
Loading...
Searching...
No Matches
platform.h
1
4
5#pragma once
6
7#if 0
9{
10#include "platform_impl.inl"
11
12 namespace compilation
13 {
14#ifdef WINDOWS
15 static constexpr inline const char* directory_separator = "\\";
16 static constexpr inline const char* nul_device_name = "nul";
17#elif LINUX
18 static constexpr inline const char* directory_separator = "/";
19 static constexpr inline const char* nul_device_name = "/dev/null";
20#elif
21#endif
22 }
23}
24#endif
constexpr auto bit_count
Equal to the number of bits in the type.
Definition bits.h:33