clean up imports

This commit is contained in:
Maximilian Keßler 2023-08-12 19:43:22 +02:00
parent 034a7a95a1
commit 70a6000884
Signed by: max
GPG Key ID: BCC5A619923C0BA5
5 changed files with 16 additions and 23 deletions

View File

@ -1,11 +1,12 @@
#ifndef DYNAMIC_PROGRAM_DOWNLOAD_H
#define DYNAMIC_PROGRAM_DOWNLOAD_H
#include <boost/json.hpp>
#include <cpr/cpr.h>
#include <iostream>
#include <fstream>
#include <variant>
#include <vector>
#include <memory>
#include <boost/json.hpp>
#include "game_state.h"
#include "myassert.h"

View File

@ -2,18 +2,17 @@
#define DYNAMIC_PROGRAM_GAME_STATE_H
#include <array>
#include <stack>
#include <cstdint>
#include <algorithm>
#include <cstddef>
#include <unordered_map>
#include <bitset>
#include <vector>
#include <cstdint>
#include <limits>
#include <optional>
#include <boost/container/static_vector.hpp>
#include <list>
#include <optional>
#include <ostream>
#include <stack>
#include <unordered_map>
#include <vector>
#include <boost/container/static_vector.hpp>
#include <boost/rational.hpp>

View File

@ -1,9 +1,7 @@
#include <algorithm>
#include <iterator>
#include "myassert.h"
#include "game_state.h"
#include <vector>
#include <map>
namespace Hanabi {

View File

@ -1,5 +1,7 @@
#include "download.h"
#include <boost/json/src.hpp>
#include <cpr/cpr.h>
#include "download.h"
// This helper function deduces the type and assigns the value with the matching key

View File

@ -1,16 +1,9 @@
//
// Created by maximilian on 7/13/23.
//
#include <boost/rational.hpp>
#include <cstdint>
#include <iostream>
#include <optional>
#include <vector>
#include <variant>
#include "game_state.h"
#include "download.h"
#include "myassert.h"
#include "cli_interface.h"