in case of tmp misuse. Simplified tmp reuse pattern in field algebra to use tmp copy and assignment rather than the complex delayed call to 'ptr()'. Removed support for unused non-const 'REF' storage of non-tmp objects due to C++ limitation in constructor overloading: if both tmp(T&) and tmp(const T&) constructors are provided resolution is ambiguous. The turbulence libraries have been upgraded and '-DCONST_TMP' option specified in the 'options' file to switch to the new 'tmp' behavior.
11 lines
292 B
Text
11 lines
292 B
Text
EXE_INC = -DCONST_TMP \
|
|
-I../turbulenceModels/lnInclude \
|
|
-I$(LIB_SRC)/transportModels \
|
|
-I$(LIB_SRC)/finiteVolume/lnInclude \
|
|
-I$(LIB_SRC)/meshTools/lnInclude \
|
|
|
|
LIB_LIBS = \
|
|
-lincompressibleTransportModels \
|
|
-lturbulenceModels \
|
|
-lfiniteVolume \
|
|
-lmeshTools
|