STYLE: tabs and line length in files, very dubious NULL in ensight reader.

- disable automatically upgrading copyrights in files since changes to
  not automatically imply a change in copyright. Eg, fixing a typo in
  comments, or changing a variable from 'loopI' to 'loopi' etc.
This commit is contained in:
Mark Olesen
2017-06-26 13:43:05 +02:00
parent fea9b6c57d
commit 02edc5b206
33 changed files with 192 additions and 142 deletions

View File

@ -118,7 +118,7 @@ public:
//- Return the windowed data
template<class Type>
tmp<Field<Type> > apply
tmp<Field<Type>> apply
(
const Field<Type>& fld,
const label windowI

View File

@ -24,7 +24,7 @@ License
\*---------------------------------------------------------------------------*/
template<class Type>
Foam::tmp<Foam::Field<Type> > Foam::windowModel::apply
Foam::tmp<Foam::Field<Type>> Foam::windowModel::apply
(
const Field<Type>& fld,
const label windowI
@ -44,7 +44,7 @@ Foam::tmp<Foam::Field<Type> > Foam::windowModel::apply
}
tmp<Field<Type> > tresult(new Field<Type>(nSamples, pTraits<Type>::zero));
tmp<Field<Type>> tresult(new Field<Type>(nSamples, pTraits<Type>::zero));
Field<Type>& result = tresult.ref();
label nWindow = nWindowsTotal(fld.size());