-
Notifications
You must be signed in to change notification settings - Fork 340
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
Who can help with VC 2015? #43
Comments
I've tried develop. In order to do this, I've had to apply #44 and #45 to the current develop branch.
The interesting one being:
This seems like a lost cause to me, at least as long as the constexpr support is broken. @rbock if you still want the log, drop a note where to put it. |
Thanks for the report. "Yikes" is an interesting error message indeed. Yes, I'd be interested in the log, can you zip and and send it to me rbock eudoxos de? Regarding your note on workarounds: Do you consider these changes a workaround that justifies an |
may be better do it like this?: // declare the macro
#ifdef _MSVC
# define SQLPP_CONSTEXPR_CSTRING(var, str) \
static constexpr const char var[sizeof(str)] = str
#else
# define SQLPP_CONSTEXPR_CSTRING(var, str) \
static constexpr const char var[] = str
#endif // _MSVC
// usage
SQLPP_CONSTEXPR_CSTRING(varname, "some string"); |
@niXman Yes, that is better, although checking for |
@jhunold Thanks for the log! Seems like my Best, Roland |
FYI: MS is getting closer. I just received message from the compiler team today:
|
Hi all,
Playing around a bit here http://webcompiler.cloudapp.net/ I found a simple workaround to the constexpr problem reported here: #34 (comment)
It is pushed to the develop branch. Who can give it a try with VC 2015 and report the remaining errors?
Best,
Roland
The text was updated successfully, but these errors were encountered: