5

when trying to compile some c / c++ code for iOS. Getting

No member named 'memcpy' in namespace 'std::__1'; did you mean 'wmemcpy'?

Have tried the compiler settings with no luck.

This is in the memory file in the tool chain.

ort11
  • 3,359
  • 4
  • 36
  • 69

1 Answers1

5

I needed to add

#include <cstring>

hope it helps

Orion
  • 301
  • 3
  • 12