Try compiling with WAll, that was dumb but fixed some things anyhow
This commit is contained in:
26
2025/Cpp/Day02/Day02.cpp
Normal file
26
2025/Cpp/Day02/Day02.cpp
Normal file
@@ -0,0 +1,26 @@
|
||||
#include "AdventHelpers/AdventOfCodeSolution.h"
|
||||
|
||||
#include <iostream>
|
||||
#include <cassert>
|
||||
#include <string>
|
||||
|
||||
class Day02Solution : public AdventHelpers::AdventOfCodeSolution
|
||||
{
|
||||
public:
|
||||
virtual std::string SolveProblem01(AdventHelpers::InputFileHelper& inputFile) override {
|
||||
return "todo";
|
||||
}
|
||||
|
||||
virtual std::string SolveProblem02(AdventHelpers::InputFileHelper& inputFile) override {
|
||||
return "todo";
|
||||
}
|
||||
};
|
||||
|
||||
int main(const char* argv[], int argc)
|
||||
{
|
||||
Day02Solution solution;
|
||||
solution.SolveAll();
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user