Re: max_load_factor constant complexity

2015-06-30 Thread Jonathan Wakely
On 30/06/15 22:25 +0200, François Dumont wrote: Hi During a recent discussion on Reflector about max_load_factor some pointed that libstdc++ has not the constant complexity as imposed by the Standard in Table 103 because we try to respect the new factor by potentially rehashing the container.

max_load_factor constant complexity

2015-06-30 Thread François Dumont
Hi During a recent discussion on Reflector about max_load_factor some pointed that libstdc++ has not the constant complexity as imposed by the Standard in Table 103 because we try to respect the new factor by potentially rehashing the container. This patch fix this problem by adopting VS Stand