Fix inheritance formatting

This commit is contained in:
Stefan Müller 2024-12-11 01:38:26 +01:00
parent fa38fa695b
commit 4ed3b84cb6
4 changed files with 8 additions and 8 deletions

View File

@ -19,8 +19,8 @@
#include <aoc/LinesSolver.hpp>
class CeresSearch :
public LinesSolver
class CeresSearch
: public LinesSolver
{
public:
std::string getPuzzleName() const override;

View File

@ -17,8 +17,8 @@
#include <aoc/LinesSolver.hpp>
class GuardGallivant :
public LinesSolver
class GuardGallivant
: public LinesSolver
{
public:
Point2 start_{};

View File

@ -20,8 +20,8 @@
#include <aoc/Point2.hpp>
#include <aoc/Solver.hpp>
class LinesSolver :
public Solver
class LinesSolver
: public Solver
{
public:
void processDataLine(const std::string& line) override;

View File

@ -17,8 +17,8 @@
#include <aoc/Solver.hpp>
class PrintQueue :
public Solver
class PrintQueue
: public Solver
{
public:
PrintQueue();