You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.
LunarGLASS does not build in VS2015. The use of _set_output_format is deprecated:
https://msdn.microsoft.com/en-us/library/0fatw238.aspx
Also, the redefinition of snprintf causes a #error in stdio.h:
#define snprintf _snprintf
I fixed all of these errors locally by changing the #ifdef _WIN32 to:
#if defined( _WIN32 ) && ( _MSC_VER < 1900 )
I can submit a merge request for these issues if you like.
The text was updated successfully, but these errors were encountered: