blob: 44ba449d8e0e7e931aaec717b615fafa739bcb7a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef NUMPY_CORE_SRC_COMMON_COMMON_HPP
#define NUMPY_CORE_SRC_COMMON_COMMON_HPP
/*
* The following C++ headers are safe to be used standalone, however,
* they are gathered to make it easy for us and for the future need to support PCH.
*/
#include "npdef.hpp"
#include "utils.hpp"
#include "npstd.hpp"
#include "half.hpp"
#include "meta.hpp"
#include "float_status.hpp"
#endif // NUMPY_CORE_SRC_COMMON_COMMON_HPP
|