Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
G
glslang
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
glslang
Commits
0de87ee9
Unverified
Commit
0de87ee9
authored
Dec 04, 2019
by
John Kessenich
Committed by
GitHub
Dec 04, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2010 from rnk/pool-alloc-clang
Remove glslang::pool_allocator::setAllocator
parents
e58c080d
24b3e838
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
1 deletion
+0
-1
PoolAlloc.h
glslang/Include/PoolAlloc.h
+0
-1
No files found.
glslang/Include/PoolAlloc.h
View file @
0de87ee9
...
...
@@ -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
:
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment