Use 2-space continuation indent consistently in specs

This commit is contained in:
Max Brunsfeld 2015-07-27 18:18:58 -07:00
parent 31b2db12d2
commit 766e3bab2c
22 changed files with 862 additions and 759 deletions

View file

@ -13,7 +13,7 @@ namespace snowhouse {
template<typename ActualType>
bool operator()(const ActualType& actual) const {
return *expected == *actual;
return *expected == *actual;
}
ExpectedType expected;
@ -22,9 +22,9 @@ namespace snowhouse {
template<typename ExpectedType>
struct Stringizer<EqualsPointerConstraint<ExpectedType>> {
static string ToString(const EqualsPointerConstraint<ExpectedType>& constraint) {
ostringstream builder;
builder << "pointer to " << snowhouse::Stringize(constraint.expected);
return builder.str();
ostringstream builder;
builder << "pointer to " << snowhouse::Stringize(constraint.expected);
return builder.str();
}
};