-
Clang-Tidy for
```c++
template
struct Crtp {
Derived& operator=(decltype(nullptr)) {
return *static_cast(this);
};
};
struct S : Crtp {
using Crtp::operator=;
};
```
should no…
-
C++20 allows constexpr virtual functions.
The [following code](https://godbolt.org/z/T1TfxjhPK) fails to compile with clang but passes with gcc.
Turning the function `foo` to be non-virtual or rem…
-
This issue consolidates issues https://github.com/duanegoodner/xiangqigame/issues/86 (moving Game and Player to C++ side of app) and https://github.com/duanegoodner/xiangqigame/issues/88 (unncecessary…
-
Hey everyone!
I followed the [installation instructions](https://github.com/gtfactslab/CrazySim#crazysim-setup) to the point where I start the simulation via
```bash
bash tools/crazyflie-simula…
-
Altered Security is the company made from the creator of the CRTP/CRTE/CRTM(ex PACES).
They used to be provided by Pentester Academy.
You can find the certifications here: https://www.alteredsecurit…
-
Hi,
trying to use this cfclient fork to connect to esp-drone (I'm on mac m1). I click scan, then connect and got the errore below. Wifi is connected to the esp-drone one.
Any hints?
Thanks
``…
-
From bitcraze/discussions#1531: When the Crazyflie is compiled with one forced deck and a CRTP controller is used, the Crazyflie is not starting properly.
First step would be to reproduce this prob…
-
```
Implement Node Aspects in such a way that it is possible to apply CRTP on Node.
```
Original issue reported on code.google.com by `elsilma...@gmail.com` on 21 Jun 2011 at 4:36
- Blocking: #84
-…
-
-
**Bug Report**
Ideally, this snippet would work. It enables making multiple types that share the same implementation but don't subclass each other (like `newtype` in other languages). If you commen…