I wanted to replace my "memcpy" with "std::copy", but I just can't find the right way for passing the args.
My old memcpy code was
memcpy(&uFeatures.Features[0], &((char*)(m_pData))[iBytePos],iByteCount);
I tried various things with std::copy, but they all did not work.
Could anybody help, please?
uFeatures.Featuresandm_pData? Also, what is the reason why you want to change tostd::copy? What "various things" have you tried?