Skip to content

Commit

Permalink
IOSS: Explicit template instantiation fix
Browse files Browse the repository at this point in the history
  • Loading branch information
gdsjaar committed Jun 5, 2024
1 parent f22e41d commit d7b3b57
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion packages/seacas/libraries/ioss/src/Ioss_FaceGenerator.C
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright(C) 1999-2023 National Technology & Engineering Solutions
// Copyright(C) 1999-2024 National Technology & Engineering Solutions
// of Sandia, LLC (NTESS). Under the terms of Contract DE-NA0003525 with
// NTESS, the U.S. Government retains certain rights in this software.
//
Expand Down Expand Up @@ -356,6 +356,9 @@ namespace Ioss {
}
}

template IOSS_EXPORT void FaceGenerator::generate_block_faces(const Ioss::ElementBlockContainer &, int, bool);
template IOSS_EXPORT void FaceGenerator::generate_block_faces(const Ioss::ElementBlockContainer &, int64_t, bool);

template <typename INT> void FaceGenerator::generate_block_faces(const Ioss::ElementBlockContainer &ebs,
INT /*dummy*/, bool local_ids)
{
Expand Down

0 comments on commit d7b3b57

Please sign in to comment.