Replies: 3 comments
-
Hi @mdavis199, thanks for your post! And you are welcome =)
No, my primary development environment is windows =) Thanks for your point and feedback! =) About failing test: sounds interesting because I can't see such a problem locally. Also CI on Windows also works fine. Looks like you've been run tests in Debug build (as a result, all Can you check if Release build works as expected for you? Anyway, this error makes sense, I will try to fix it UPD: Also feel free to submit issues =) |
Beta Was this translation helpful? Give feedback.
-
UPD: reproduced and found issue related to this one. Thanks for it! Can you create issue related to this one? |
Beta Was this translation helpful? Give feedback.
-
Yes, you're right, of course. All tests pass in release mode. Sure, I'll create the issue. Thanks! |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Firstly, I"m really excited to see this library and I'm looking forward to trying it out as it develops. Such great quality and design!
I suppose there is no reason it could not be used on a Windows platform. But, since you are in early development and you seem to be developing on non-windows platforms, I did not want to create a Issue for a problem I'm having while exploring your code. So, I thought I'd just discuss it here, if you're okay with that.
I've compiled your samples/tests and SGML snake using Microsoft's compiler with no problem. (Unable to use clang's compiler because LLVM has not yet resolved the MS's ABI incompatibility with
no_unique_address
attribute. They should have it resolved in a future version)I think the Snake code is a great tutorial/overview of its use. Loved it. Ran great on windows.
One Failing Test
All the tests passed, except for
test_group_by.exe
. It threw an exception forinvalid comparator
at this line of the test;ReactivePlusPlus/src/tests/test_group_by.cpp
Line 252 in f4ac15e
which ultimately called this line and the
emplace
that crashed:ReactivePlusPlus/src/rpp/rpp/operators/group_by.hpp
Line 111 in f4ac15e
The STL source code indicates that this fails because
STL Excerpt
That's as far as I've gone on drilling down into the problem. I just wanted to give you a heads up.
Beta Was this translation helpful? Give feedback.
All reactions