- Apr 25, 2017
-
-
Mark OLESEN authored
- The existing ':' anchor works for rvalue substitutions (Eg, ${:subdict.name}), but fails for lvalues, since it is a punctuation token and parse stops there.
-
Mark OLESEN authored
-
Mark OLESEN authored
STYLE: update dictionary documentation
-
Mark OLESEN authored
- can be used directly from within an application or function-object. Makes it available for dictionaries.
-
- Apr 20, 2017
-
-
mark authored
-
mark authored
- suppress error messages that appear with zsh. According to unset(1p), 'unset -f' unsets a function. If the function was not previously defined, this is a no-op. This is similar for zsh, but there it emits a warning if the function was not previously defined. - avoid 'local' in functions sources from etc/bashrc. ksh does not support this. - use 'command' shell builtin instead of 'type'. Seems to be more consistent between shell flavours.
-
- Apr 19, 2017
-
-
mark authored
- POSIX specifies '-c' for counting the number of matching lines, so we can just use that instead of 'wc' in wmake
-
mark authored
- if called from the top-level project directory ($WM_PROJECT_DIR) default to using {applications,src} directories. This avoids erroneous linking of etc/codeTemplates and avoids the lengthy scanning of the tutorials directory
-
mark authored
- use InfoSwitch to disable, or via static method. - respect the state of the argList banner when deciding to emit initialization information. Can otherwise end up with unwanted output rubbish on things like foamDictionary and foamListTimes.
-
mark authored
-
mark authored
- patch from Bernhard Gschaider
-
mark authored
- nested classes can't be forward declared and thus less flexible than desired
-
mark authored
- patch from Bernhard Gschaider
-
mark authored
- consistent use of watchIndex vs watchFd
-
Andrew Heather authored
Feature read now See merge request !102
-
mattijs authored
-
mattijs authored
-
- Apr 18, 2017
- Apr 13, 2017
- Apr 11, 2017
-
-
mark authored
- This can be used as a convenient alternative to comparing against end(). Eg, dictionaryConstructorTable::iterator cstrIter = dictionaryConstructorTablePtr_->find(methodType); if (cstrIter.found()) { ... } vs. if (cstrIter != dictionaryConstructorTablePtr_->end()) { ... }
-
mark authored
- reduce the amount of checking. Equivalent logic to what HashTable has.
-
mark authored
- remove stray canonicalSize declaration
-
mark authored
-
mark authored
- 1st problem arises when there are edges, but edgeNormals is empty. The UIndirectList fails (zero elements, non-zero addressing) - further problem occurs if there is a mismatch in the number of edges and edges normals (incorrect indexing on loop).
-
- Apr 10, 2017
-
-
mark authored
-
- Apr 07, 2017
-
-
mark authored
-
mark authored
- can be useful with compiling additional OpenFOAM programs that use FOAM_USER_APPBIN, FOAM_USER_LIBBIN for their build, to avoid conflicts with the normal user bin/lib files. - or to force relocation of FOAM_SITE_APPBIN, FOAM_SITE_LIBBIN during packaging of OpenFOAM
-
mark authored
-
mark authored
-
mark authored
- consistent with use of FOAM_SOLVERS, and reduces reliance on the FOAM_APP env variable
-
mark authored
- had occasional remnant use of FOAM_SRC
-
mark authored
-
- Apr 06, 2017
-
-
mattijs authored
-
- Apr 05, 2017
-
-
sergio authored
-
- Apr 04, 2017
-
-
mark authored
- useful for builds that don't use the ThirdParty directory at all
-