Try compiling with WAll, that was dumb but fixed some things anyhow

This commit is contained in:
Jose Caban
2025-12-01 23:30:42 -05:00
parent dd0c70341e
commit b2c1ba8227
9 changed files with 206 additions and 3 deletions

26
2025/Cpp/Day02/Day02.cpp Normal file
View 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;
}