Skip to content

Commit

Permalink
IOSS: Windows build seems to need a null entity C file
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Jan 24, 2024
1 parent 321bf0b commit be39b94
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
11 changes: 11 additions & 0 deletions packages/seacas/libraries/ioss/src/Ioss_NullEntity.C
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// Copyright(C) 1999-2020, 2022, 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.
//
// See packages/seacas/LICENSE for details

#include "Ioss_NullEntity.h"

namespace Ioss {
NullEntity::NullEntity() : Ioss::GroupingEntity(nullptr, "null_entity", 0) {}
} // namespace Ioss
2 changes: 1 addition & 1 deletion packages/seacas/libraries/ioss/src/Ioss_NullEntity.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ namespace Ioss {
class IOSS_EXPORT NullEntity : public GroupingEntity
{
public:
NullEntity() : Ioss::GroupingEntity(nullptr, "null_entity", 0) {}
NullEntity();

std::string type_string() const override { return "NullEntity"; }
std::string short_type_string() const override { return "null"; }
Expand Down

0 comments on commit be39b94

Please sign in to comment.