Skip to content
Snippets Groups Projects
  1. Oct 20, 2008
  2. Oct 17, 2008
    • Mark Olesen's avatar
      xfer class modifications: · 91cb6d29
      Mark Olesen authored
        - removed operator* in favour of operator() for consistency with tmp
          class. The previous use of operator() for const casting didn't work
          anyhow due to template confusion.
        - added xferCopy(), xferMove() and xferTmp() template functions instead
        - preliminary changes to IOobjects and Fields for xfer
      91cb6d29
    • Mark Olesen's avatar
      update to openmpi-1.2.8 · 5cca2643
      Mark Olesen authored
      5cca2643
    • Mark Olesen's avatar
      Merge commit 'OpenCFD/master' into merging · cd6e34c8
      Mark Olesen authored
      Conflicts:
      
      	src/OpenFOAM/containers/misc/xferI.H
      	src/OpenFOAM/fields/tmp/refCount.H
      	src/OpenFOAM/memory/refCount/refCount.H
      	src/OpenFOAM/memory/xfer/xferI.H
      	src/finiteVolume/fvMesh/extendedStencil/extendedCentredStencil.C
      	src/finiteVolume/fvMesh/extendedStencil/faceStencil/faceEdgeCellStencil.H
      cd6e34c8
  3. Oct 16, 2008
  4. Oct 15, 2008
  5. Oct 14, 2008
  6. Oct 13, 2008
    • mattijs's avatar
      setSize mis-usage · c1cb8b6d
      mattijs authored
      c1cb8b6d
    • Mark Olesen's avatar
      DynamicList changes · 2c6b1368
      Mark Olesen authored
        - setSize(const label)
          * When the new size is greater than the addressed list size, the allocated
            list sizes is adjusted and the addressed size does not change.
          * Otherwise the addressed list size is just reduced and the allocated
            size does not change. inline void setSize(const label);
      
        - setSize(const label, const T&)
          Disabled, since the usefulness and semantics are not quite clear
      
        - operator=(const T&)
          should not affect the allocated size (BUGFIX)
      2c6b1368