pop_options.hpp 468 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) 2017-2023 zhllxt
  3. *
  4. * author : zhllxt
  5. * email : 37792738@qq.com
  6. *
  7. * Distributed under the Boost Software License, Version 1.0. (See accompanying
  8. * file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  9. */
  10. // No header guard
  11. #if defined(__clang__)
  12. # pragma clang diagnostic pop
  13. #endif
  14. #if defined(__GNUC__) || defined(__GNUG__)
  15. # pragma GCC diagnostic pop
  16. #endif
  17. #if defined(_MSC_VER)
  18. # pragma warning(pop)
  19. #endif