fix(gcc): added missing headers for gcc builds
This commit is contained in:
@@ -33,6 +33,7 @@
|
|||||||
|
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
#include "nlohmann/json.hpp"
|
#include "nlohmann/json.hpp"
|
||||||
|
|
||||||
|
|||||||
@@ -18,6 +18,8 @@
|
|||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <expected>
|
#include <expected>
|
||||||
|
#include <optional>
|
||||||
|
#include <format>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @file engine_abstract.h
|
* @file engine_abstract.h
|
||||||
|
|||||||
@@ -22,6 +22,8 @@
|
|||||||
#include <memory>
|
#include <memory>
|
||||||
#include <ranges>
|
#include <ranges>
|
||||||
#include <functional>
|
#include <functional>
|
||||||
|
#include <expected>
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
|
|
||||||
#include "cppad/cppad.hpp"
|
#include "cppad/cppad.hpp"
|
||||||
|
|||||||
@@ -8,6 +8,8 @@
|
|||||||
|
|
||||||
#include "gridfire/engine/scratchpads/blob.h"
|
#include "gridfire/engine/scratchpads/blob.h"
|
||||||
|
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
|
|
||||||
namespace gridfire::engine {
|
namespace gridfire::engine {
|
||||||
|
|
||||||
|
|||||||
@@ -59,6 +59,7 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
#include <memory>
|
#include <memory>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
namespace gridfire::engine::scratch {
|
namespace gridfire::engine::scratch {
|
||||||
|
|
||||||
|
|||||||
@@ -47,6 +47,7 @@
|
|||||||
#pragma once
|
#pragma once
|
||||||
#include <cstdint>
|
#include <cstdint>
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
|
#include <format>
|
||||||
|
|
||||||
namespace gridfire::engine::scratch {
|
namespace gridfire::engine::scratch {
|
||||||
|
|
||||||
|
|||||||
@@ -49,6 +49,9 @@
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
|
#include <expected>
|
||||||
|
|
||||||
#include "gridfire/engine/scratchpads/blob.h"
|
#include "gridfire/engine/scratchpads/blob.h"
|
||||||
#include "gridfire/exceptions/error_scratchpad.h"
|
#include "gridfire/exceptions/error_scratchpad.h"
|
||||||
|
|
||||||
|
|||||||
@@ -14,6 +14,9 @@
|
|||||||
|
|
||||||
#include "quill/Logger.h"
|
#include "quill/Logger.h"
|
||||||
|
|
||||||
|
#include <expected>
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
namespace gridfire::engine {
|
namespace gridfire::engine {
|
||||||
/**
|
/**
|
||||||
* @class AdaptiveEngineView
|
* @class AdaptiveEngineView
|
||||||
|
|||||||
@@ -16,6 +16,8 @@
|
|||||||
#include "quill/Logger.h"
|
#include "quill/Logger.h"
|
||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <expected>
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
namespace gridfire::engine {
|
namespace gridfire::engine {
|
||||||
class DefinedEngineView : public DynamicEngine, public EngineView<DynamicEngine> {
|
class DefinedEngineView : public DynamicEngine, public EngineView<DynamicEngine> {
|
||||||
|
|||||||
@@ -11,6 +11,9 @@
|
|||||||
#include "sundials/sundials_nvector.h"
|
#include "sundials/sundials_nvector.h"
|
||||||
#include "sundials/sundials_types.h"
|
#include "sundials/sundials_types.h"
|
||||||
|
|
||||||
|
#include <expected>
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
namespace gridfire::engine {
|
namespace gridfire::engine {
|
||||||
/**
|
/**
|
||||||
* @class MultiscalePartitioningEngineView
|
* @class MultiscalePartitioningEngineView
|
||||||
|
|||||||
@@ -21,6 +21,7 @@
|
|||||||
#include "gridfire/reaction/reaction.h"
|
#include "gridfire/reaction/reaction.h"
|
||||||
|
|
||||||
#include <memory>
|
#include <memory>
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
namespace gridfire::policy {
|
namespace gridfire::policy {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -23,6 +23,8 @@
|
|||||||
|
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <set>
|
#include <set>
|
||||||
|
#include <format>
|
||||||
|
#include <vector>
|
||||||
|
|
||||||
#include "gridfire/engine/types/engine_types.h"
|
#include "gridfire/engine/types/engine_types.h"
|
||||||
#include "gridfire/engine/scratchpads/blob.h"
|
#include "gridfire/engine/scratchpads/blob.h"
|
||||||
|
|||||||
@@ -28,6 +28,7 @@
|
|||||||
#include "fourdst/atomic/atomicSpecies.h"
|
#include "fourdst/atomic/atomicSpecies.h"
|
||||||
|
|
||||||
#include "gridfire/policy/chains.h"
|
#include "gridfire/policy/chains.h"
|
||||||
|
#include <format>
|
||||||
|
|
||||||
namespace gridfire::policy {
|
namespace gridfire::policy {
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -9,6 +9,7 @@
|
|||||||
#include <unordered_map>
|
#include <unordered_map>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <unordered_set>
|
#include <unordered_set>
|
||||||
|
#include <optional>
|
||||||
|
|
||||||
#include "cppad/cppad.hpp"
|
#include "cppad/cppad.hpp"
|
||||||
#include "fourdst/composition/composition.h"
|
#include "fourdst/composition/composition.h"
|
||||||
|
|||||||
@@ -20,6 +20,8 @@
|
|||||||
#include <string>
|
#include <string>
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <unordered_set>
|
#include <unordered_set>
|
||||||
|
#include <optional>
|
||||||
|
#include <format>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -22,6 +22,7 @@
|
|||||||
|
|
||||||
#include "fourdst/composition/composition.h"
|
#include "fourdst/composition/composition.h"
|
||||||
#include "cppad/cppad.hpp"
|
#include "cppad/cppad.hpp"
|
||||||
|
#include <format>
|
||||||
|
|
||||||
namespace gridfire {
|
namespace gridfire {
|
||||||
struct NetIn {
|
struct NetIn {
|
||||||
|
|||||||
Reference in New Issue
Block a user