Skip to content

Commit

Permalink
Fixed error in C# bindings.
Browse files Browse the repository at this point in the history
  • Loading branch information
shoops committed Mar 13, 2024
1 parent 4d2707b commit ae5207e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions copasi/utilities/CUnit.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (C) 2019 - 2022 by Pedro Mendes, Rector and Visitors of the
// Copyright (C) 2019 - 2024 by Pedro Mendes, Rector and Visitors of the
// University of Virginia, University of Heidelberg, and University
// of Connecticut School of Medicine.
// All rights reserved.
Expand Down Expand Up @@ -84,7 +84,7 @@ class CUnit

virtual ~CUnit();

virtual CIssue setExpression(const std::string & expression);
CIssue setExpression(const std::string & expression);

std::string getExpression() const;

Expand Down
2 changes: 1 addition & 1 deletion copasi/utilities/CUnitDefinition.h
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ class CUnitDefinition : public CDataContainer, public CUnit, public CAnnotation

const std::string & getSymbol() const;

virtual CIssue setExpression(const std::string & expression);
CIssue setExpression(const std::string & expression);

CUnitDefinition & operator=(const CUnitDefinition & src);

Expand Down

0 comments on commit ae5207e

Please sign in to comment.