Skip to content

Commit

Permalink
redundant declaration error in Loads name space
Browse files Browse the repository at this point in the history
  • Loading branch information
fabricix committed Oct 16, 2024
1 parent 697c8cf commit 79fb1b3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions inc/Loads.h
Original file line number Diff line number Diff line change
Expand Up @@ -81,13 +81,14 @@ namespace Loads {
};

// TODO doxygen
struct SeismicData {
struct SeismicData
{
std::vector<double> time;
std::vector<Eigen::Vector3d> acceleration;
std::vector<Eigen::Vector3d> velocity;
};

Loads::SeismicData& getSeismicData();
SeismicData& getSeismicData();

/// \brief Configures the gravity load in particles
/// \param[in] bodies A list containing Body pointers
Expand Down

0 comments on commit 79fb1b3

Please sign in to comment.