dynarray
dynarray copied to clipboard
Adjusted implementation of std::experimental::dynarray without stack allocation.
Results
2
dynarray issues
Sort by
recently updated
recently updated
newest added
The incentive for this is change is the following scenario - after `src` was **moved** into `dst`, `src` is actually an empty instance ``` TEST(FaceFeatureVecTests, MoveSemantics) { dynarray src(128); src.fill(42.0f);...
`m_data.data()` appears throughout, but doesn't compile (GCC 7.3) and isn't standard. Shouldn't it be `m_data.get()`?