Skip to content

Commit

Permalink
[ogs] C++20 compatibility.
Browse files Browse the repository at this point in the history
  • Loading branch information
bilke committed May 26, 2021
1 parent c7cbdcb commit 098dd0f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion include/tclap/MultiArg.h
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class MultiArg : public Arg
/**
* Prevent accidental copying
*/
MultiArg<T>(const MultiArg<T>& rhs);
MultiArg(const MultiArg& rhs);
MultiArg<T>& operator=(const MultiArg<T>& rhs);

};
Expand Down
2 changes: 1 addition & 1 deletion include/tclap/ValueArg.h
Original file line number Diff line number Diff line change
Expand Up @@ -253,7 +253,7 @@ class ValueArg : public Arg
/**
* Prevent accidental copying
*/
ValueArg<T>(const ValueArg<T>& rhs);
ValueArg(const ValueArg& rhs);
ValueArg<T>& operator=(const ValueArg<T>& rhs);
};

Expand Down

0 comments on commit 098dd0f

Please sign in to comment.