Robert Dailey

Results 230 comments of Robert Dailey

Any thoughts on this? ATM I have to do: ``` switch (static_cast(m_status._to_integral())) ```

Sorry for the late response. Unfortunately your first example doesn't compile on MSVC 2015 Update 3. However it does work like this: ``` auto command_from_string = PaymentServiceCommand::_from_string_nocase_nothrow( context.GetArgByKey("command").c_str()); auto command...

After reading more into the discussion, I agree with @cheparukhin's first idea. I think it would make sense to keep the scoped enum outside and just build a series of...

I've assigned myself to this; it's a good opportunity for me to familiarize myself with building the project but also look into addressing the issue. At `$DAYJOB`, I use the...

Well since you are (currently) a header-only library, there is very little benefit to having a CMake script outside of building unit tests. You might provide one in releases of...

@aantron Could you explain what the `test/expected` directory is for? It seems like expected output for some tests, however none of the test code so far I've seen actually spits...

Oh I think I just found the answer. Under `example` directory you have what appear to be more tests. Would you like me to convert these to actual unit tests?...

Wow I just came back and I'm seeing all the spam done here due to the rebased commits I pushed up. Sorry for that! I was doing lots of pushes...

So would it be fair to say that we leave the examples out of the unit tests? You stated you had planned to pull them out anyway. The real question...