Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
D
dlib
Project
Project
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
钟尚武
dlib
Commits
82463617
Commit
82463617
authored
Dec 06, 2012
by
Davis King
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some code to workaround a bug in certain versions of gcc.
parent
dc78fef6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
0 deletions
+5
-0
std_allocator.h
dlib/std_allocator.h
+5
-0
No files found.
dlib/std_allocator.h
View file @
82463617
...
@@ -91,6 +91,11 @@ namespace dlib
...
@@ -91,6 +91,11 @@ namespace dlib
return
(
pointer
)
pool
.
allocate_array
(
num
*
sizeof
(
T
));
return
(
pointer
)
pool
.
allocate_array
(
num
*
sizeof
(
T
));
}
}
// This function is not required by the C++ standard but some versions of the STL
// distributed with gcc erroneously require it. See the bug report for further
// details: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=51626
void
construct
(
pointer
p
)
{
return
construct
(
p
,
value_type
());
}
//initialize elements of allocated storage p with value value
//initialize elements of allocated storage p with value value
void
construct
(
pointer
p
,
const
T
&
value
)
void
construct
(
pointer
p
,
const
T
&
value
)
{
{
...
...
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