mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'develop' of develop.openfoam.com:Development/OpenFOAM-plus into develop
This commit is contained in:
@ -45,7 +45,7 @@ Foam::Ostream& Foam::operator<<(Ostream& os, const bool b)
|
|||||||
{
|
{
|
||||||
// we could also write as text string without any difficulty
|
// we could also write as text string without any difficulty
|
||||||
// os << (b ? "true" : "false");
|
// os << (b ? "true" : "false");
|
||||||
os.write(int(b));
|
os.write(label(b));
|
||||||
os.check(FUNCTION_NAME);
|
os.check(FUNCTION_NAME);
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -68,7 +68,7 @@ Foam::Istream& Foam::operator>>(Istream& is, direction& d)
|
|||||||
|
|
||||||
Foam::Ostream& Foam::operator<<(Ostream& os, const direction d)
|
Foam::Ostream& Foam::operator<<(Ostream& os, const direction d)
|
||||||
{
|
{
|
||||||
os.write(int(d));
|
os.write(label(d));
|
||||||
os.check(FUNCTION_NAME);
|
os.check(FUNCTION_NAME);
|
||||||
return os;
|
return os;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -46,12 +46,6 @@ namespace Foam
|
|||||||
{
|
{
|
||||||
typedef CollidingParcel<KinematicParcel<particle>>
|
typedef CollidingParcel<KinematicParcel<particle>>
|
||||||
basicKinematicCollidingParcel;
|
basicKinematicCollidingParcel;
|
||||||
|
|
||||||
template<>
|
|
||||||
inline bool contiguous<basicKinematicCollidingParcel>()
|
|
||||||
{
|
|
||||||
return true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //
|
||||||
|
|||||||
Reference in New Issue
Block a user