Skip to content

Commit

Permalink
Workflow fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sharduld1908 committed Dec 21, 2023
1 parent 1671e03 commit fe5b84b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/faker-cxx/Science.h
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,10 @@ class Unit
std::string symbol;
std::string usedToMeasure;

Unit(std::string name_, std::string symbol_, std::string usedToMeasure_) : name(name_), symbol(symbol_) {}
Unit(std::string name_, std::string symbol_, std::string usedToMeasure_)
: name(name_), symbol(symbol_), usedToMeasure(usedToMeasure_)
{
}

bool operator==(const Unit& obj) const
{
Expand Down

0 comments on commit fe5b84b

Please sign in to comment.