mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
COMP: minor adjustments for MacOS
- to avoid the many overload warnings on that platform,
may wish to use
FOAM_EXTRA_CXXFLAGS="-Wno-overloaded-virtual"
GIT: remove some old compilation stub files
This commit is contained in:
@ -79,6 +79,7 @@ scalar calcVertexNormalWeight
|
||||
{
|
||||
FatalErrorInFunction
|
||||
<< "Point not in face" << abort(FatalError);
|
||||
return 0;
|
||||
}
|
||||
|
||||
const vector e1 = points[f[index]] - points[f[f.fcIndex(index)]];
|
||||
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -488,7 +488,7 @@ public:
|
||||
if (data && (count > 0) && in_range(pos))
|
||||
{
|
||||
// Restrict to intersection with current content
|
||||
if (span_tellp() <= std::streampos(pos+count))
|
||||
if (span_tellp() <= pos+std::streampos(count))
|
||||
{
|
||||
count = (span_tellp() - pos);
|
||||
}
|
||||
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -1 +0,0 @@
|
||||
#warning File removed - left for old dependency check only
|
||||
@ -35,10 +35,8 @@ License
|
||||
// Has _c() version?
|
||||
#undef Foam_UPstream_largeCountFile
|
||||
|
||||
#if defined(OMPI_MAJOR_VERSION)
|
||||
#if (OMPI_MAJOR_VERSION >= 5)
|
||||
#define Foam_UPstream_largeCountFile
|
||||
#endif
|
||||
#if (MPI_VERSION >= 4)
|
||||
#define Foam_UPstream_largeCountFile
|
||||
#endif
|
||||
|
||||
// Macros for calling versions with or without '_c'
|
||||
|
||||
Reference in New Issue
Block a user