Skip to content
Snippets Groups Projects
Commit e9721c76 authored by andy's avatar andy
Browse files

STYLE: Limit code to 80 chars

parent 0187683b
No related merge requests found
......@@ -59,7 +59,15 @@ Foam::regionModels::regionModelFunctionObject::New
<< exit(FatalError);
}
return autoPtr<regionModelFunctionObject>(cstrIter()(dict.subDict(modelName), owner));
return
autoPtr<regionModelFunctionObject>
(
cstrIter()
(
dict.subDict(modelName),
owner
)
);
}
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment