Guest User

Untitled

a guest
Jun 15th, 2023
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.92 KB | None | 0 0
  1. diff --git a/general/hash.hpp b/general/hash.hpp
  2. index 86d987d80..11b16bc7b 100644
  3. --- a/general/hash.hpp
  4. +++ b/general/hash.hpp
  5. @@ -16,6 +16,7 @@
  6.  #include "array.hpp"
  7.  #include "globals.hpp"
  8.  #include <type_traits>
  9. +#include <cstdint> // uintXX_t
  10.  
  11.  namespace mfem
  12.  {
  13. diff --git a/general/mem_manager.cpp b/general/mem_manager.cpp
  14. index 1261e7dd3..7fe34e01b 100644
  15. --- a/general/mem_manager.cpp
  16. +++ b/general/mem_manager.cpp
  17. @@ -16,6 +16,7 @@
  18.  #include <cstring> // std::memcpy, std::memcmp
  19.  #include <unordered_map>
  20.  #include <algorithm> // std::max
  21. +#include <cstdint>// uintptr_t
  22.  
  23.  // Uncomment to try _WIN32 platform
  24.  //#define _WIN32
  25. diff --git a/mesh/vtk.hpp b/mesh/vtk.hpp
  26. index a59bed275..38bdad7bc 100644
  27. --- a/mesh/vtk.hpp
  28. +++ b/mesh/vtk.hpp
  29. @@ -12,6 +12,7 @@
  30.  #ifndef MFEM_VTK
  31.  #define MFEM_VTK
  32.  
  33. +#include <cstdint> // uintXX_t
  34.  #include "../fem/geom.hpp"
  35.  #include "../general/binaryio.hpp"
  36.  
Advertisement
Add Comment
Please, Sign In to add comment