You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

defines.h 2.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. /*
  2. * Frozen
  3. * Copyright 2016 QuarksLab
  4. *
  5. * Licensed to the Apache Software Foundation (ASF) under one
  6. * or more contributor license agreements. See the NOTICE file
  7. * distributed with this work for additional information
  8. * regarding copyright ownership. The ASF licenses this file
  9. * to you under the Apache License, Version 2.0 (the
  10. * "License"); you may not use this file except in compliance
  11. * with the License. You may obtain a copy of the License at
  12. *
  13. * http://www.apache.org/licenses/LICENSE-2.0
  14. *
  15. * Unless required by applicable law or agreed to in writing,
  16. * software distributed under the License is distributed on an
  17. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  18. * KIND, either express or implied. See the License for the
  19. * specific language governing permissions and limitations
  20. * under the License.
  21. */
  22. #ifndef FROZEN_LETITGO_DEFINES_H
  23. #define FROZEN_LETITGO_DEFINES_H
  24. #if defined(_MSVC_LANG) && !(defined(__EDG__) && defined(__clang__)) // TRANSITION, VSO#273681
  25. #define FROZEN_LETITGO_IS_MSVC
  26. #endif
  27. // Code taken from https://stackoverflow.com/questions/43639122/which-values-can-msvc-lang-have
  28. #if defined(FROZEN_LETITGO_IS_MSVC)
  29. #if _MSVC_LANG > 201402
  30. #define FROZEN_LETITGO_HAS_CXX17 1
  31. #else /* _MSVC_LANG > 201402 */
  32. #define FROZEN_LETITGO_HAS_CXX17 0
  33. #endif /* _MSVC_LANG > 201402 */
  34. #else /* _MSVC_LANG etc. */
  35. #if __cplusplus > 201402
  36. #define FROZEN_LETITGO_HAS_CXX17 1
  37. #else /* __cplusplus > 201402 */
  38. #define FROZEN_LETITGO_HAS_CXX17 0
  39. #endif /* __cplusplus > 201402 */
  40. #endif /* _MSVC_LANG etc. */
  41. // End if taken code
  42. #if FROZEN_LETITGO_HAS_CXX17 == 1 && defined(FROZEN_LETITGO_IS_MSVC)
  43. #define FROZEN_LETITGO_HAS_STRING_VIEW // We assume Visual Studio always has string_view in C++17
  44. #else
  45. #if FROZEN_LETITGO_HAS_CXX17 == 1 && __has_include(<string_view>)
  46. #define FROZEN_LETITGO_HAS_STRING_VIEW
  47. #endif
  48. #endif
  49. #ifdef __cpp_char8_t
  50. #define FROZEN_LETITGO_HAS_CHAR8T
  51. #endif
  52. #endif // FROZEN_LETITGO_DEFINES_H