From cdc6b9bf47834f80ac87ffc64cadbbdef75b61ea Mon Sep 17 00:00:00 2001 From: Klemens Morgenstern Date: Sun, 25 Jun 2023 22:53:31 -0300 Subject: [PATCH] chore: mrdox requires x64 closes #309, #473 --- include/mrdocs/Platform.hpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/mrdocs/Platform.hpp b/include/mrdocs/Platform.hpp index 0794e09c7..3f488fd91 100644 --- a/include/mrdocs/Platform.hpp +++ b/include/mrdocs/Platform.hpp @@ -72,6 +72,10 @@ namespace mrdocs { # endif #endif +#if ! defined(__x86_64__) && ! defined(_WIN64) +# error mrdox requires a 64-bit archtecture +#endif + } // mrdocs } // clang