Commit 82463617 authored by Davis King's avatar Davis King

Added some code to workaround a bug in certain versions of gcc.

parent dc78fef6
...@@ -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)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment