Browse Source

glslang: fix compilation on certain newer compilers

This is already fixed in the latest glslang source code, but updating may be too risky for love 11.x.
Alex Szpakowski 3 years ago
parent
commit
7310fde7b9
1 changed files with 0 additions and 1 deletions
  1. 0 1
      src/libraries/glslang/glslang/Include/PoolAlloc.h

+ 0 - 1
src/libraries/glslang/glslang/Include/PoolAlloc.h

@@ -304,7 +304,6 @@ public:
     size_type max_size() const { return static_cast<size_type>(-1) / sizeof(T); }
     size_type max_size(int size) const { return static_cast<size_type>(-1) / size; }
 
-    void setAllocator(TPoolAllocator* a) { allocator = *a; }
     TPoolAllocator& getAllocator() const { return allocator; }
 
 protected: