Fix line endings.

This commit is contained in:
A.J. Beamon 2018-09-06 15:31:07 -07:00
parent 17c7bda075
commit da4f32e600
1 changed files with 5 additions and 5 deletions

View File

@ -297,11 +297,11 @@ struct Role {
std::string abbreviation;
bool includeInTraceRoles;
bool operator==(const Role &r) const {
return roleName == r.roleName;
}
bool operator!=(const Role &r) const {
return !(*this == r);
bool operator==(const Role &r) const {
return roleName == r.roleName;
}
bool operator!=(const Role &r) const {
return !(*this == r);
}
private: