Skip to content

Commit

Permalink
added override to MBDynElement to make mac happy
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnAD committed Nov 29, 2023
1 parent e0241dd commit 97f7f6b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 0 deletions.
4 changes: 4 additions & 0 deletions OndselSolver/MBDynElement.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ using namespace MbD;
void MbD::MBDynElement::initialize()
{
}

void MBDynElement::parseMBDyn(std::vector<std::string> &lines) {
MBDynItem::parseMBDyn(lines);
}
1 change: 1 addition & 0 deletions OndselSolver/MBDynElement.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ namespace MbD {
class MBDynElement : public MBDynItem
{
public:
void parseMBDyn(std::vector<std::string>& lines) override;
void initialize() override;

};
Expand Down

0 comments on commit 97f7f6b

Please sign in to comment.