blob: b3d950dd472e16da96d736dad3c2ee06c677559e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#pragma once
#if defined(__IOS__) || defined(__ANDROID__)
#include_next <cxxabi.h>
#elif defined(_WIN32)
// pass
#else
#include <contrib/libs/cxxsupp/libcxxrt/cxxabi.h>
#endif
|