summaryrefslogtreecommitdiffhomepage
path: root/compat/literals.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'compat/literals.hpp')
-rw-r--r--compat/literals.hpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/compat/literals.hpp b/compat/literals.hpp
deleted file mode 100644
index 7117a992..00000000
--- a/compat/literals.hpp
+++ /dev/null
@@ -1,11 +0,0 @@
-#pragma once
-#include "integer-types.hpp"
-
-#if !(defined __cpp_size_t_suffix || defined _MSC_VER && _MSVC_LANG < 202004)
-#ifdef _MSC_VER
-#pragma system_header
-#else
-#pragma GCC system_header
-#endif
-consteval auto operator""uz(unsigned long long int x) { return ::floormat::size_t(x); }
-#endif