Re: std::vector.

2017-10-07 Thread Nick Kew
On Fri, 2017-10-06 at 18:08 -0500, Alan Carroll wrote: > Currently only std::vector is approved for use in the core. In general > though you should try to arrange things so that you don't need to do any > memory allocation in the main path. Allocation should be relatively rare. > > On Fri, Oct 6,

Re: std::vector.

2017-10-06 Thread Alan Carroll
Currently only std::vector is approved for use in the core. In general though you should try to arrange things so that you don't need to do any memory allocation in the main path. Allocation should be relatively rare. On Fri, Oct 6, 2017 at 5:14 PM, Dk Jack wrote: > Hi, > I am looking to make so