-
Notifications
You must be signed in to change notification settings - Fork 465
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
Fixes for Windows version #1721
Conversation
Please provide more information. |
This error occurs when you compile in Visual Studio 2013. |
Thanks for the clarification. This is a known issue. Follow the discussion in #1719 |
@@ -6,6 +6,9 @@ | |||
#include "constants.hpp" | |||
#include "to_string.hpp" | |||
#include "inspect.hpp" | |||
#ifdef _WIN32 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#if defined(_MSC_VER) && _MSC_VER < 1900
(because it compiles with MinGW and VS2015+ on Windows), and I will move this block before or after #ifdef __MINGW32__
block (see few lines below in this file).
One nit, otherwise LGTM. Thanks for updating the targets file! :) |
@am11 Thanks for tip. I made changes to |
No description provided.