blob: 8d94cc0a5c1e1763199f6e982d4a9d4c46cd1335 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* File: core/config.hpp
* Purpose: Config file of the OCL.
* Author: Amlal El Mahrouss (amlal@nekernel.org)
* Copyright 2025, Amlal El Mahrouss, licensed under the Boost Software License.
*/
#pragma once
#include <memory>
#include <iostream>
#include <string>
#include <boost/config.hpp>
#include <boost/core/nvp.hpp>
#include <boost/core/demangle.hpp>
#include <boost/core/null_deleter.hpp>
#include <boost/container/allocator.hpp>
namespace ocl
{
#ifdef OCL_USE_UTF8
using char_type = char8_t;
#else
using char_type = char;
#endif
} // namespace ocl
|