Robert Russell

Results 123 comments of Robert Russell

Maybe related https://developercommunity.visualstudio.com/t/VC2022-regression-error-C2131-and-C3615/1574646?entry=myfeedback I loaded up the new Visual Studio 2022 and I got alot of constexpr and consteval errors. The issues with constexpr and consteval that I reported are...

I realize this is a known issue, and I read some of the previous posts. I guess it has something to do with forced_inline. I am just posting that I...

Removing as const. As this isn't something the standard does. We aren't mutating the data but the caller might want to.

~~`ninja -C build test` is working in my other project. And I based my cmake code on that and this one it isn't working. So something is off in my...

I found https://cliutils.gitlab.io/modern-cmake/chapters/testing.html so I added a some if statements in https://github.com/codereport/An-Algorithm-Library/pull/7/commits/adb223c8dbad792108a7ec3f90f4844b4efcbd51 Without the if statements the cTest was still looking for the tests even if they weren't built. So...

Appveyor's clang support might be limited till I solve a build script issue. https://github.com/Sebanisu/ToolsLibrary/issues/6 Some c++20 features require libc++ to work like std::span. You might need to disable building on...

MSVC has a bug with c++20 templated lambdas opened a ticket on microsoft https://github.com/Sebanisu/ToolsLibrary/issues/4 though it might not be an issue here.

I was able to get it to build on clang12 with libc++ Might not be the best build script but it's working :)

Though it seems ut is cpp20 now. I think in an older talk it was cpp17. Yeah it failed to compile, if I was in cpp17 a lot of errors...