blob: a1c6e86be9adc7a5c0eba50afdedc677028ec7d4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
/*
* File: core/includes.hpp
* Purpose: Core includes for the OCL library.
* Author: Amlal El Mahrouss (amlal@nekernel.org)
* Copyright 2025, Amlal El Mahrouss, licensed under the Boost Software License.
*/
#pragma once
#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
|