summaryrefslogtreecommitdiff
path: root/external/glm/Wsign-compare.patch.0
diff options
context:
space:
mode:
Diffstat (limited to 'external/glm/Wsign-compare.patch.0')
-rw-r--r--external/glm/Wsign-compare.patch.020
1 files changed, 0 insertions, 20 deletions
diff --git a/external/glm/Wsign-compare.patch.0 b/external/glm/Wsign-compare.patch.0
deleted file mode 100644
index ef97121ff97f..000000000000
--- a/external/glm/Wsign-compare.patch.0
+++ /dev/null
@@ -1,20 +0,0 @@
---- glm/gtx/bit.inl
-+++ glm/gtx/bit.inl
-@@ -576,7 +576,7 @@
- assert(ToBit <= sizeof(genIUType) * std::size_t(8));
-
- genIUType Result = Value;
-- for(std::size_t i = 0; i <= ToBit; ++i)
-+ for(int i = 0; i <= ToBit; ++i)
- Result |= (1 << i);
- return Result;
- }
-@@ -593,7 +593,7 @@
- assert(ToBit <= sizeof(genIUType) * std::size_t(8));
-
- genIUType Result = Value;
-- for(std::size_t i = 0; i <= ToBit; ++i)
-+ for(int i = 0; i <= ToBit; ++i)
- Result &= ~(1 << i);
- return Result;
- }