Change long long int to fixed width integer type int64_t

This commit is contained in:
2025-05-22 16:12:56 +02:00
parent 97b61836d8
commit 0b70db7670
35 changed files with 93 additions and 96 deletions

View File

@@ -15,4 +15,4 @@
#include <aoc/framework/LinesSolver-impl.hpp>
template class LinesSolver<long long, long long>;
template class LinesSolver<int64_t, int64_t>;

View File

@@ -17,6 +17,6 @@
#include <string>
template class Solver<long long, long long>;
template class Solver<long long, std::string>;
template class Solver<int64_t, int64_t>;
template class Solver<int64_t, std::string>;
template class Solver<std::string, std::string>;