test action

This commit is contained in:
whaffman 2025-09-10 18:12:46 +02:00
parent 07c205173e
commit f2a9a6128c
2 changed files with 3 additions and 4 deletions

View File

@ -2,7 +2,6 @@
#include <iostream>
void MyModule::doSomething()
{
std::cout << "Doing something!" << std::endl;
void MyModule::doSomething() {
std::cout << "Doing really something!" << std::endl;
}

View File

@ -3,5 +3,5 @@
class MyModule
{
public:
void doSomething();
void doSomething();
};