%PDF- %PDF-
| Direktori : /lib/python3/dist-packages/pythran/pythonic/ |
| Current File : //lib/python3/dist-packages/pythran/pythonic/core.hpp |
#ifndef PYTHONIC_CORE_HPP
#define PYTHONIC_CORE_HPP
#define PYTHONIC_NS_BEGIN \
namespace \
{ \
namespace pythonic \
{
#define PYTHONIC_NS_END \
} \
}
// mostly to flag '_' as unused in generated code
#ifdef WIN32
#define PYTHRAN_UNUSED
#else
#define PYTHRAN_UNUSED __attribute__((unused))
#endif
// for backward compatibility
#ifdef USE_BOOST_SIMD
#define USE_XSIMD
#endif
#define STR_(M) #M
// clang-format off
#define INCLUDE_FILE(U, M) STR_(U/M.hpp)
// clang-format on
#include "pythonic/types/assignable.hpp"
#include "pythonic/types/combined.hpp"
#include "pythonic/types/int.hpp"
#include "pythonic/types/float.hpp"
#include "pythonic/types/slice.hpp"
#endif