Skip to content

Commit

Permalink
IOSS: Thread safe cannot default this constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Jun 28, 2023
1 parent a804d5f commit 0602c2a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/seacas/libraries/ioss/src/Ioss_FieldManager.h
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-2022 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 @@ -34,8 +34,8 @@ namespace Ioss {
class IOSS_EXPORT FieldManager
{
public:
FieldManager() = default;
FieldManager(const FieldManager &other) = default;
FieldManager() = default;
FieldManager(const FieldManager &other) : fields(other.fields) {}
FieldManager &operator=(const FieldManager &) = delete;
~FieldManager() = default;

Expand Down

0 comments on commit 0602c2a

Please sign in to comment.