Timmy Jose

Results 12 issues of Timmy Jose

Fix for a small typo in the `Destructors` example.

Location: https://github.com/rougier/CPP-Crash-Course?tab=readme-ov-file#virtual-methods Issue: With `virtual void method2( void );`, the example will fail at the linking stage. Fix: Either declare it purely virtual: `virtual void method2( void ) = 0;`,...