changed a lot of small clang-tidy warnings

This commit is contained in:
churl
2022-05-23 17:06:11 +02:00
parent b78faebdc5
commit 7927220247
30 changed files with 158 additions and 190 deletions
+1 -1
View File
@@ -17,7 +17,7 @@
*---------------------------------------------------------------------------*
* Beschreibung: main-Methode der Anwendung. *
*****************************************************************************/
void CoroutineDemo::main() {
void CoroutineDemo::main() const {
/*
* Hier muss Code eingefuegt werden
+2 -3
View File
@@ -11,15 +11,14 @@
#define __coroutinedemo_include__
class CoroutineDemo {
private:
CoroutineDemo(const CoroutineDemo& copy); // Verhindere Kopieren
CoroutineDemo(const CoroutineDemo& copy) = delete; // Verhindere Kopieren
public:
CoroutineDemo() {}
// Koroutine-Startmethode
void main();
void main() const;
};
#endif