<html><head></head><body><div style="font-family: Verdana;font-size: 12.0px;"><div>libc++</div>
<div> </div>
<div>file: include/deque</div>
<div> </div>
<div>1185<br/>
1186 template <class _Tp, class _Allocator <strong>/*= allocator<_Tp>*/</strong>><br/>
1187 class _LIBCPP_TEMPLATE_VIS deque<br/>
1188 : private __deque_base<_Tp, _Allocator><br/>
1189 {</div>
<div> </div>
<div>Why is the deque's Allocator default initializer commented?</div>
<div> </div>
<div>I can write this code below:</div>
<div> </div>
<div>
<div>#include <deque></div>
<div>int main()<br/>
{<br/>
std::deque<int> u;<br/>
<br/>
return 0;<br/>
}</div>
<div> </div>
<div>So, shouldn't the default initializer be present there?</div>
<div> </div>
<div>PS: May I do questions like this in this mailing list?</div>
</div></div></body></html>