Skip to content
This repository has been archived by the owner on Jun 10, 2024. It is now read-only.

LunarGLASS does not build with VS2015 Update 2 #28

Open
danginsburg opened this issue Jun 27, 2016 · 1 comment
Open

LunarGLASS does not build with VS2015 Update 2 #28

danginsburg opened this issue Jun 27, 2016 · 1 comment

Comments

@danginsburg
Copy link
Contributor

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.

@danginsburg
Copy link
Contributor Author

Pull request pushed to #29

Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant