diff --git a/README.md b/README.md index e6d9537..84279df 100644 --- a/README.md +++ b/README.md @@ -46,7 +46,7 @@ Preferably use the following link. - [C++ Core Guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines) - [cppreference.com](http://en.cppreference.com) -## Talks 🎥 +## 🎥 Talks - [CppCon 2018 — *Simplicity: Not Just For Beginners*](https://www.youtube.com/watch?v=n0Ak6xtVXno) - [CppCon 2019 — *Naming is Hard: Let's Do Better*](https://www.youtube.com/watch?v=MBRoCdtZOYg) diff --git a/assignment2/README.md b/assignment2/README.md index 7ce1efc..24e6852 100644 --- a/assignment2/README.md +++ b/assignment2/README.md @@ -26,7 +26,7 @@ You are allowed to use: - [OpenAL](https://openal.org/) - [nlohmann/json](https://github.com/nlohmann/json) / [RapidJSON](https://rapidjson.org/) - [Assimp](https://www.assimp.org/) -- [sbt-image](https://github.com/nothings/stb/blob/master/stb_image.h) +- [stb-image](https://github.com/nothings/stb/blob/master/stb_image.h) - [Ogg](https://xiph.org/ogg/) / [Vorbis](https://xiph.org/vorbis/) / [Opus](https://opus-codec.org/) - [Tiled](https://www.mapeditor.org/) - [OpenSSL](https://www.openssl.org/) diff --git a/exercises/task16/plugin.hpp b/exercises/task16/plugin.hpp index a0f75ca..bbd53cc 100644 --- a/exercises/task16/plugin.hpp +++ b/exercises/task16/plugin.hpp @@ -7,7 +7,7 @@ class Plugin { public: virtual void run() = 0; - virtual ~Plugin(){}; + virtual ~Plugin() {} }; /// Symbol of the plugin constructor function.