Fix some typos
This commit is contained in:
parent
9039c95690
commit
a46cc5981f
@ -46,7 +46,7 @@ Preferably use the following link.
|
|||||||
- [C++ Core Guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines)
|
- [C++ Core Guidelines](http://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines)
|
||||||
- [cppreference.com](http://en.cppreference.com)
|
- [cppreference.com](http://en.cppreference.com)
|
||||||
|
|
||||||
## Talks 🎥
|
## 🎥 Talks
|
||||||
|
|
||||||
- [CppCon 2018 — *Simplicity: Not Just For Beginners*](https://www.youtube.com/watch?v=n0Ak6xtVXno)
|
- [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)
|
- [CppCon 2019 — *Naming is Hard: Let's Do Better*](https://www.youtube.com/watch?v=MBRoCdtZOYg)
|
||||||
|
@ -26,7 +26,7 @@ You are allowed to use:
|
|||||||
- [OpenAL](https://openal.org/)
|
- [OpenAL](https://openal.org/)
|
||||||
- [nlohmann/json](https://github.com/nlohmann/json) / [RapidJSON](https://rapidjson.org/)
|
- [nlohmann/json](https://github.com/nlohmann/json) / [RapidJSON](https://rapidjson.org/)
|
||||||
- [Assimp](https://www.assimp.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/)
|
- [Ogg](https://xiph.org/ogg/) / [Vorbis](https://xiph.org/vorbis/) / [Opus](https://opus-codec.org/)
|
||||||
- [Tiled](https://www.mapeditor.org/)
|
- [Tiled](https://www.mapeditor.org/)
|
||||||
- [OpenSSL](https://www.openssl.org/)
|
- [OpenSSL](https://www.openssl.org/)
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
class Plugin {
|
class Plugin {
|
||||||
public:
|
public:
|
||||||
virtual void run() = 0;
|
virtual void run() = 0;
|
||||||
virtual ~Plugin(){};
|
virtual ~Plugin() {}
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Symbol of the plugin constructor function.
|
/// Symbol of the plugin constructor function.
|
||||||
|
Loading…
Reference in New Issue
Block a user