Skip to content

Commit

Permalink
Fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
JasonMarechal25 committed Jun 3, 2024
1 parent a9cc04c commit 240b8f9
Showing 1 changed file with 3 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,8 @@

#pragma once

#include "antares/solver/simulation/sim_structure_probleme_economique.h"
#include "antares/solver/lps/LpsFromAntares.h"
#include "opt_period_string_generator_base.h"
#include "antares/solver/simulation/sim_structure_probleme_economique.h"

namespace Antares::Solver
{
Expand All @@ -36,7 +35,7 @@ namespace Antares::Solver
* This class is a custom exception class that is thrown when an error occurs during the translation
* of a weekly problem.
*/
class WeeklyProblemTranslationException : public std::runtime_error
class WeeklyProblemTranslationException: public std::runtime_error
{
public:
explicit WeeklyProblemTranslationException(const std::string& string) noexcept;
Expand Down Expand Up @@ -64,7 +63,7 @@ class HebdoProblemToLpsTranslator
* @return WeeklyDataFromAntaresPtr A WeeklyDataFromAntaresPtr to the translated problem.
*/
[[nodiscard]] WeeklyDataFromAntares translate(const PROBLEME_ANTARES_A_RESOUDRE* problem,
std::string_view name) const;
std::string_view name) const;

/**
* @brief Retrieves common problem data, the part common to every weekly problems
Expand Down

0 comments on commit 240b8f9

Please sign in to comment.