Skip to content

Commit

Permalink
Merge pull request KratosMultiphysics#864 from KratosMultiphysics/hot…
Browse files Browse the repository at this point in the history
…fix-compilation-mapping

HOTFIX: Correcting point template MappingApplication
  • Loading branch information
Vicente Mataix Ferrándiz authored Oct 19, 2017
2 parents 72fe3a6 + 269ef11 commit 7b76182
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -330,12 +330,12 @@ class InterfaceObject : public Point
virtual void save(Serializer& rSerializer) const
{
KRATOS_ERROR << "This object is not supposed to be used with serialization!" << std::endl;
KRATOS_SERIALIZE_SAVE_BASE_CLASS(rSerializer, Point<3>);
KRATOS_SERIALIZE_SAVE_BASE_CLASS(rSerializer, Point);
}
virtual void load(Serializer& rSerializer)
{
KRATOS_ERROR << "This object is not supposed to be used with serialization!" << std::endl;
KRATOS_SERIALIZE_SAVE_BASE_CLASS(rSerializer, Point<3>);
KRATOS_SERIALIZE_SAVE_BASE_CLASS(rSerializer, Point);
}

///@}
Expand Down

0 comments on commit 7b76182

Please sign in to comment.