mirror of
https://develop.openfoam.com/Development/openfoam.git
synced 2025-11-28 03:28:01 +00:00
Merge branch 'master' of /home/dm4/OpenFOAM/OpenFOAM-dev
This commit is contained in:
@ -28,14 +28,17 @@ License
|
|||||||
|
|
||||||
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
// * * * * * * * * * * * * * * Static Data Members * * * * * * * * * * * * * //
|
||||||
|
|
||||||
defineTemplateTypeNameAndDebug(Foam::LduInterfaceField<Foam::scalar>, 0);
|
namespace Foam
|
||||||
defineTemplateTypeNameAndDebug(Foam::LduInterfaceField<Foam::vector>, 0);
|
{
|
||||||
defineTemplateTypeNameAndDebug
|
defineTemplateTypeNameAndDebug(LduInterfaceField<scalar>, 0);
|
||||||
(
|
defineTemplateTypeNameAndDebug(LduInterfaceField<vector>, 0);
|
||||||
Foam::LduInterfaceField<Foam::sphericalTensor>,
|
defineTemplateTypeNameAndDebug
|
||||||
0
|
(
|
||||||
);
|
LduInterfaceField<sphericalTensor>,
|
||||||
defineTemplateTypeNameAndDebug(Foam::LduInterfaceField<Foam::symmTensor>, 0);
|
0
|
||||||
defineTemplateTypeNameAndDebug(Foam::LduInterfaceField<Foam::tensor>, 0);
|
);
|
||||||
|
defineTemplateTypeNameAndDebug(LduInterfaceField<symmTensor>, 0);
|
||||||
|
defineTemplateTypeNameAndDebug(LduInterfaceField<tensor>, 0);
|
||||||
|
}
|
||||||
|
|
||||||
// ************************************************************************* //
|
// ************************************************************************* //
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
c++DBUG = -ggdb3 -DFULLDEBUG
|
c++DBUG = -g -DFULLDEBUG
|
||||||
c++OPT = -O0 -fdefault-inline
|
c++OPT = -O0
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
cDBUG = -ggdb -DFULLDEBUG
|
cDBUG = -g -DFULLDEBUG
|
||||||
cOPT = -O1 -fdefault-inline -finline-functions
|
cOPT = -O0
|
||||||
|
|||||||
@ -1,7 +1,7 @@
|
|||||||
.SUFFIXES: .C .cxx .cc .cpp
|
.SUFFIXES: .C .cxx .cc .cpp
|
||||||
|
|
||||||
# -Woverloaded-virtual may produce spurious warnings, disable for now
|
# -Woverloaded-virtual may produce spurious warnings, disable for now
|
||||||
c++WARN = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -Wno-overloaded-virtual
|
c++WARN = -Wall -Wextra -Wno-unused-parameter -Wold-style-cast -Wnon-virtual-dtor -Wno-overloaded-virtual -Wno-unused-comparison
|
||||||
|
|
||||||
CC = clang++ -m32
|
CC = clang++ -m32
|
||||||
|
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
c++DBUG = -ggdb3 -DFULLDEBUG
|
c++DBUG = -g -DFULLDEBUG
|
||||||
c++OPT = -O0 -fdefault-inline
|
c++OPT = -O0
|
||||||
|
|||||||
@ -1,2 +1,2 @@
|
|||||||
cDBUG = -ggdb -DFULLDEBUG
|
cDBUG = -g -DFULLDEBUG
|
||||||
cOPT = -O1 -fdefault-inline -finline-functions
|
cOPT = -O0
|
||||||
|
|||||||
Reference in New Issue
Block a user