Yuriy Solodkyy

Results 51 comments of Yuriy Solodkyy

Thank you @barcharcraz! I also once sent a pull request #1435 to enable GitHub Actions under iOS/Android, but it was never merged in. That one was still for non-side-by-side NDK,...

Hi @DellaBitta! I checked my code and the snippet I provided happens right before I register a *global* `AuthStateListener`, which happens on the GL thread that [cocos2d-x](https://github.com/cocos2d/cocos2d-x) does everything else:...

GItHub actions runners complain as well: DEPRECATION: Python 2.7 reached the end of its life on January 1st, 2020. Please upgrade your Python as Python 2.7 is no longer maintained....

OK, the problem is in the very first line, if you turn it into: ``` C++ struct Expression { virtual ~Expression(){} }; ``` your example will magically start working. The...

Hi Andrzej, Read the comment for XTL_FALL_THROUGH in config.h. Right now it is enabled, but it shouldn't and I should have removed that functionality altogether long time ago. The problem...

of course, just use the wildcard pattern _ #include using mch::_; Case(C(), _) ... Alternatively, Case allows specifying less arguments than subjects in which case all missing patterns are assumed...

For variant, that is the right header, other headers would only assume subclassing. I'll have a look at this tonight - I probably need to add a couple more subtyping...

Code compiles with Clang, so I guess it is an MSVC-specific issue. Not sure yet why. As to static_assert, I remember now I added it deliberately because some of the...

I'd have to look in details to tell you anything with certainty, but here are a few things to try. First of all, remove all the comments after each argument...

P.S. Also you seem to have 11 arguments and AFAIR I only made the overloaded macro expansion work for up to 10 arguments, so check if it works with smaller...