1234567891011121314151617181920212223 |
- /*
- * Copyright (c) 2017-2023 zhllxt
- *
- * author : zhllxt
- * email : 37792738@qq.com
- *
- * Distributed under the Boost Software License, Version 1.0. (See accompanying
- * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
- */
- // No header guard
- #if defined(__clang__)
- # pragma clang diagnostic pop
- #endif
- #if defined(__GNUC__) || defined(__GNUG__)
- # pragma GCC diagnostic pop
- #endif
- #if defined(_MSC_VER)
- # pragma warning(pop)
- #endif
|