CommonCorePch.h 651 B

12345678910111213141516171819
  1. //-------------------------------------------------------------------------------------------------------
  2. // Copyright (C) Microsoft. All rights reserved.
  3. // Licensed under the MIT license. See LICENSE.txt file in the project root for full license information.
  4. //-------------------------------------------------------------------------------------------------------
  5. #pragma once
  6. #include "CommonMin.h"
  7. #ifdef _MSC_VER
  8. #pragma warning(push)
  9. #if defined(PROFILE_RECYCLER_ALLOC) || defined(HEAP_TRACK_ALLOC) || defined(ENABLE_DEBUG_CONFIG_OPTIONS)
  10. #ifdef _UCRT
  11. #include <typeinfo>
  12. #else
  13. #include <typeinfo.h>
  14. #endif
  15. #endif
  16. #pragma warning(pop)
  17. #endif