Skip to content

Commit

Permalink
fix spacing issues
Browse files Browse the repository at this point in the history
  • Loading branch information
mngan committed Dec 7, 2021
1 parent 4db4470 commit 6838088
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions common/src/include/frvt_structs.h
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ operator<<(
case ReturnCode::MatchError:
return (s << "Error occurred during the 1:1 match operation");
case ReturnCode::QualityAssessmentError:
return (s << "Failure to generate a quality score on the input image");
return (s << "Failure to generate a quality score on the input image");
case ReturnCode::NotImplemented:
return (s << "Function is not implemented");
case ReturnCode::VendorError:
Expand Down Expand Up @@ -225,9 +225,9 @@ typedef struct ReturnStatus {
std::string info;

ReturnStatus() :
code{ReturnCode::UnknownError},
info{""}
{}
code{ReturnCode::UnknownError},
info{""}
{}
/**
* @brief
* Create a ReturnStatus object.
Expand Down Expand Up @@ -374,7 +374,7 @@ operator++(QualityElement& qe) {
if (qe == QualityElement::End)
throw std::out_of_range("QualityElement& operator++(QualityElement&)");
qe = QualityElement(static_cast<std::underlying_type<QualityElement>::type>(qe) + 1);
return qe;
return qe;
}

/** Output stream operator for QualityElement enum. */
Expand All @@ -396,7 +396,7 @@ operator<<(
return (s << "captureMotionBlur");
default:
return (s << "undefined QualityElement");
}
}
}

/**
Expand Down

0 comments on commit 6838088

Please sign in to comment.