Andrew Geissler | f103a7f | 2021-05-07 16:09:40 -0500 | [diff] [blame] | 1 | --- a/external/glslang/src/glslang/Include/PoolAlloc.h |
| 2 | +++ b/external/glslang/src/glslang/Include/PoolAlloc.h |
Andrew Geissler | 748a483 | 2020-07-24 16:24:21 -0500 | [diff] [blame] | 3 | @@ -240,8 +240,9 @@ protected: |
| 4 | |
| 5 | int numCalls; // just an interesting statistic |
| 6 | size_t totalBytes; // just an interesting statistic |
| 7 | -private: |
| 8 | +public: |
| 9 | TPoolAllocator& operator=(const TPoolAllocator&); // don't allow assignment operator |
| 10 | +private: |
| 11 | TPoolAllocator(const TPoolAllocator&); // don't allow default copy constructor |
| 12 | }; |
| 13 | |