This commit is contained in:
Michael Davidsaver
2017-12-11 20:21:41 -06:00
parent e79c49019d
commit fd9081c80e

View File

@@ -55,7 +55,7 @@ template<typename T>
static void copyV(size_t count, void *draw, const void *sraw)
{
T *dest=(T*)draw;
const T *src=(T*)sraw;
const T *src=(const T*)sraw;
std::copy(src, src+count, dest);
}