summaryrefslogtreecommitdiffhomepage
path: root/compat/literals.hpp
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2023-08-27 13:13:43 +0200
committerStanislaw Halik <sthalik@misaki.pl>2023-08-27 13:13:57 +0200
commitf1048d9dd6a86844fbd3444345026a18f847a302 (patch)
tree4b47f3a3840cb0c1440564b195875b74f5d0d073 /compat/literals.hpp
parent312c6854324992572f4aa19976ca04d204705aad (diff)
cleanup prelude
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