summaryrefslogtreecommitdiff
path: root/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilplat.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/web2c/luatexdir/luapplib/src/util/utilplat.h')
-rw-r--r--Build/source/texk/web2c/luatexdir/luapplib/src/util/utilplat.h31
1 files changed, 0 insertions, 31 deletions
diff --git a/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilplat.h b/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilplat.h
deleted file mode 100644
index 8838f702b92..00000000000
--- a/Build/source/texk/web2c/luatexdir/luapplib/src/util/utilplat.h
+++ /dev/null
@@ -1,31 +0,0 @@
-
-#ifndef UTIL_PLAT_H
-#define UTIL_PLAT_H
-
-#if defined(_WIN32) || defined(WIN32)
-# ifdef _MSC_VER
-# if defined(_M_64) || defined(_WIN64)
-# define MSVC64
-# else
-# define MSVC32
-# endif
-# else
-# if defined(__MINGW64__)
-# define MINGW64
-# else
-# if defined(__MINGW32__)
-# define MINGW32
-# endif
-# endif
-# endif
-#endif
-
-#ifdef __GNUC__
-//# define FALLTHRU [[fallthrough]] // c++17
-//# define FALLTHRU [[gnu:fallthrough]] // c++14
-# define FALLTHRU __attribute__((fallthrough)); // C and C++03
-#else
-# define FALLTHRU
-#endif
-
-#endif \ No newline at end of file