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
Xcode gives quite a few errors where it complains...
Non-const lvalue reference to type 'el::Value' cannot bind to a temporary of type 'el::Value'
...such as in list_item.h with TakeValue function, I'm not sure if this simply needs something changing in Xcode to make the const explicit or if it's a feature that isn't supported in Xcode, just thought I'd point it out.
The text was updated successfully, but these errors were encountered:
Are you building with c++11 or c++14? Clang or gcc? (I am going to work
toward clang compatibility in the future, but don't know about gcc)
On Wed, Jul 15, 2015 at 13:21 Sinoxan [email protected] wrote:
Xcode gives quite a few errors where it complains...
Non-const lvalue reference to type 'el::Value' cannot bind to a temporary
of type 'el::Value'
...such as in list_item.h with TakeValue function, I'm not sure if this
simply needs something changing in Xcode to make the const explicit or if
it's a feature that isn't supported in Xcode, just thought I'd point it out.
—
Reply to this email directly or view it on GitHub #21.
I've been meaning to try to get clang-on-windows going - that may be a good way to do migrations like this, as we can isolate the compiler differences from the bigger platform components. I know chrome has had luck with clang-on-windows (including supporting the full Windows SDK), but I'm not sure how much of that has been upstreamed out of chrome-land.
Xcode gives quite a few errors where it complains...
Non-const lvalue reference to type 'el::Value' cannot bind to a temporary of type 'el::Value'
...such as in list_item.h with TakeValue function, I'm not sure if this simply needs something changing in Xcode to make the const explicit or if it's a feature that isn't supported in Xcode, just thought I'd point it out.
The text was updated successfully, but these errors were encountered: