mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
STYLE: relocate distributed flag into ParRunControl
- adjust member order in TimePaths to better packing
This commit is contained in:
@ -33,6 +33,7 @@ Description
|
||||
#include "nil.H"
|
||||
#include "IOstreams.H"
|
||||
#include "PstreamBuffers.H"
|
||||
#include "argList.H"
|
||||
#include "Time.H"
|
||||
|
||||
namespace Foam
|
||||
@ -63,6 +64,13 @@ int main(int argc, char *argv[])
|
||||
nil x;
|
||||
cout<<"nil:" << sizeof(x) << nl;
|
||||
}
|
||||
{
|
||||
argList x(argc, argv);
|
||||
cout<<"argList:" << sizeof(x) << nl;
|
||||
|
||||
TimePaths y(x);
|
||||
cout<<"TimePaths:" << sizeof(y) << nl;
|
||||
}
|
||||
{
|
||||
zero x;
|
||||
cout<<"zero:" << sizeof(x) << nl;
|
||||
|
||||
Reference in New Issue
Block a user