ZXShady

Results 11 issues of ZXShady

```cpp template friend _T* relinquish(fbvector&); template friend void attach(fbvector&, _T* data, size_t sz, size_t cap); ``` the C++ standard disallows usage of names that start with a leading underscore followed...

for example HEDLEY_CONSTEXPR14 for C++14 compiles into constexpr and above otherwise compile to no keyword HEDLEY_CONSTEXPR17 HEDLEY_CONSTEXPR20 .. etc... we have HEDLEY_CONSTEXPR but it is only limited for C++11

### Prerequisite Checklist - [X] I searched for [existing issues](https://github.com/search?q=repo%3ASFML%2FSFML&type=issues) to prevent duplicates - [X] I searched for [existing discussions on the forum](https://www.google.com/search?q=site%3Ahttps%3A%2F%2Fen.sfml-dev.org) to prevent duplicates - [X] I understand...

feature

### Prerequisite Checklist - [X] I searched for [existing issues](https://github.com/search?q=repo%3ASFML%2FSFML&type=issues) to prevent duplicates - [X] I searched for [existing discussions on the forum](https://www.google.com/search?q=site%3Ahttps%3A%2F%2Fen.sfml-dev.org) to prevent duplicates - [X] I understand...

feature
m:sfml-system

A fix to stack corruption due to incorrect compiler behavior from MSVC that it will never fix due to backward compatability Compile with MSVC (in debug mode) run examples/event_handling and...

bug
m:sfml-window
p:windows

```cpp sfSound* sfSound_create(const sfSoundBuffer* buffer) { assert(buffer); return new sfSound{sf::Sound(buffer->This), buffer}; // what would happen if new throws? } ``` best to replace it with `new(std::nothrow)` which returns null on...

Bug

Hi, I had an issue with an assert aware expression decomposer where the expression decomposer uses overloaded `operator==` and `operator!=` without any constrains on the second type of parameter which...

triage

I see that the library internally needs `constexpr inline` variables to have static storage for them why doesn't the library expose them to be used directly by the user https://github.com/Neargye/magic_enum/blob/master/include%2Fmagic_enum%2Fmagic_enum.hpp#L826-L827...

Fixes #151 ~~and #152~~ Also fixes the issue of `ASSERT(1 = 5)` compiling