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 <charconv>
|
||||||
#include <chrono>
|
#include <chrono>
|
||||||
#include <iostream>
|
#include <iostream>
|
||||||
|
#include <string_view>
|
||||||
|
|
||||||
struct AoCOptions {
|
struct AoCOptions {
|
||||||
aoc2019::solution_t implementation;
|
aoc2019::solution_t implementation;
|
||||||
@@ -9,7 +10,7 @@ struct AoCOptions {
|
|||||||
};
|
};
|
||||||
|
|
||||||
static AoCOptions parse_options(const int argc, const char* argv[]) {
|
static AoCOptions parse_options(const int argc, const char* argv[]) {
|
||||||
using namespace std::string_view_literals;
|
using namespace std::literals;
|
||||||
AoCOptions options{};
|
AoCOptions options{};
|
||||||
|
|
||||||
auto show_help = [argv] (int exit_status = 0) {
|
auto show_help = [argv] (int exit_status = 0) {
|
||||||
|
|||||||
Reference in New Issue
Block a user