CommonDataStructuresPch.h 656 B

1234567891011121314151617181920212223242526
  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 "CommonMinMemory.h"
  7. // === C Runtime Header Files ===
  8. #ifndef USING_PAL_STDLIB
  9. #include <wchar.h>
  10. #if defined(_UCRT)
  11. #include <cmath>
  12. #else
  13. #include <math.h>
  14. #endif
  15. #else
  16. #include "CommonPal.h"
  17. #endif
  18. // === Codex Header Files ===
  19. #include "Codex/Utf8Codex.h"