Skip to content

Commit

Permalink
Merge pull request #1113 from boennecd/master
Browse files Browse the repository at this point in the history
attempt to fix 2019-February/010296.html
  • Loading branch information
eddelbuettel committed Oct 21, 2020
2 parents c5a97a3 + abff123 commit c0c2a1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/attributes.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ namespace attributes {
// Type info
class Type {
public:
Type() {}
Type(): isConst_(false), isReference_(false) {}
Type(const std::string& name, bool isConst, bool isReference)
: name_(name), isConst_(isConst), isReference_(isReference)
{
Expand Down

0 comments on commit c0c2a1b

Please sign in to comment.