mirror of
https://github.com/bertptrs/adventofcode.git
synced 2025-12-25 21:00:31 +01:00
Fix missing includes.
This commit is contained in:
@@ -2,6 +2,7 @@
|
||||
#include <charconv>
|
||||
#include <chrono>
|
||||
#include <iostream>
|
||||
#include <string_view>
|
||||
|
||||
struct AoCOptions {
|
||||
aoc2019::solution_t implementation;
|
||||
@@ -9,7 +10,7 @@ struct AoCOptions {
|
||||
};
|
||||
|
||||
static AoCOptions parse_options(const int argc, const char* argv[]) {
|
||||
using namespace std::string_view_literals;
|
||||
using namespace std::literals;
|
||||
AoCOptions options{};
|
||||
|
||||
auto show_help = [argv] (int exit_status = 0) {
|
||||
|
||||
Reference in New Issue
Block a user