Rename .h file extension to .hpp, and fix some include orderings

This commit is contained in:
2024-12-11 01:12:27 +01:00
parent f2126f6c7c
commit fa38fa695b
51 changed files with 73 additions and 71 deletions

View File

@@ -15,7 +15,7 @@
#pragma once
#include <aocTests/TestContext.h>
#include <aocTests/TestContext.hpp>
class Part1TestContext
: public TestContext

View File

@@ -15,7 +15,7 @@
#pragma once
#include <aocTests/TestContext.h>
#include <aocTests/TestContext.hpp>
class Part2TestContext
: public TestContext

View File

@@ -18,7 +18,7 @@
#include <string>
#include <vector>
#include <aoc/Solver.h>
#include <aoc/Solver.hpp>
class TestContext
{