Convert Tabs to spaces where appropriate.

This commit is contained in:
Bård Skaflestad 2012-01-26 10:41:58 +01:00
parent a92b7a1b0c
commit 4ab4dc7543

View File

@ -69,8 +69,8 @@ namespace Opm {
negate(BaseVec& x) {
typedef typename BaseVec::value_type VT;
::std::transform(x.begin(), x.end(),
x.begin(),
::std::negate<VT>());
x.begin(),
::std::negate<VT>());
}
};