-
Notifications
You must be signed in to change notification settings - Fork 345
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
strcpy error in PythonUtils.cpp #790
Comments
devernay
added a commit
that referenced
this issue
May 16, 2022
10 tasks
Yes, this has been here forever, and this was dead code since Natron has not been compiled with Visual Studio for ages (more than 5 years). |
Many thanks anyway.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Natron\Global\PythonUtils.cpp
char* pathCpy = strcpy(path.c_str());
Error (active) E0167 argument of type "const char *" is incompatible with parameter of type "char *" Engine
Error (active) E0165 too few arguments in function call Engine
Hi, everyone. I encountered this issue like above. I googled strcpy function, there are no examples like only take single parameter. Is anyone knows the real solution, of course I know I could prefix with (char*) just do not want change the source code.
The text was updated successfully, but these errors were encountered: