blob: a287da18cbabe06ea256cb184f0bfe2d935fd2da (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
diff --git a/glslang/Include/PoolAlloc.h b/glslang/Include/PoolAlloc.h
index 8a928414..f1fc219e 100644
--- a/glslang/Include/PoolAlloc.h
+++ b/glslang/Include/PoolAlloc.h
@@ -293,7 +293,6 @@ public:
template<class Other>
pool_allocator(const pool_allocator<Other>& p) : allocator(p.getAllocator()) { }
- GLSLANG_EXPORT_FOR_TESTS
pointer allocate(size_type n) {
return reinterpret_cast<pointer>(getAllocator().allocate(n * sizeof(T))); }
pointer allocate(size_type n, const void*) {
|