Corentin Schreiber

Results 38 issues of Corentin Schreiber

I've been using TinyExpr in my project and recently needed standard comparison operators (=) and boolean logic (!, &&, ||). I've just implemented this in my fork with this commit...

Currently, the CMake script sets the `CMAKE_CXX_STANDARD` variable to `11`. This leaks into parent projects when adding backward-cpp with `add_subdirectory()`. I have therefore modified the CMake script to explicitly set...

To start with, thank you for this library! It was very easy to install and gave really nice traces... My only problem thus far is that, at least with my...

* [x] Has this change been discussed on [the forum](https://en.sfml-dev.org/forums/index.php#c3) or in an issue before? (see https://github.com/SFML/SFML/issues/1773) * [x] Does the code follow the SFML [Code Style Guide](https://www.sfml-dev.org/style.php)? * [x]...

feature
m:sfml-graphics
s:undecided

## Subject of the issue I am maintaining a library which uses several back-ends for rending 2D graphics, and SFML is one of them. Recently, I started implementing optimized batching...

feature
m:sfml-graphics
s:undecided

Issue https://github.com/ThePhD/sol2/issues/1074 introduced a new customization point to handle checked access. This is currently done only for "real" function arguments, and not for "implicit" argument like the `this` pointer when...

Currently, the outline has a fixed thickness, so there is no difference between `NORMAL` and `THICK`.

enhancement
core

## Description Currentlly, when using `TEMPLATE_LIST_TEST_CASE` to create a templated test case, the test output refers to each type in the list by index: ``` Template test case with test...

## Expected Behavior ```c++ #include #include using namespace boost::ut; int main() { "test"_test = []() { std::unique_ptr p; expect(that % p == nullptr); }; } ``` Should compile. ## Actual...