Skip to content
Snippets Groups Projects
  1. Jun 30, 2022
  2. Jun 29, 2022
    • Sean McBride's avatar
      Merge topic 'more-cdash-warnings' · 03ef89ce
      Sean McBride authored and Kitware Robot's avatar Kitware Robot committed
      
      6edc5f80 Fixed more warnings from cdash
      
      Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
      Merge-request: !9297
      03ef89ce
    • Spiros Tsalikis's avatar
      Merge branch 'release' · 93950506
      Spiros Tsalikis authored and Kitware Robot's avatar Kitware Robot committed
      93950506
    • Spiros Tsalikis's avatar
      Merge topic 'fix-gcc-compilation-error' into release · 98e49772
      Spiros Tsalikis authored and Kitware Robot's avatar Kitware Robot committed
      
      b608770c Common/DataModel/Testing: avoid ODR violations of helper functions
      
      Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
      Acked-by: default avatarBen Boeckel <ben.boeckel@kitware.com>
      Merge-request: !9333
      98e49772
    • Spiros Tsalikis's avatar
      Merge topic 'fix-gcc-compilation-error' · 4bb02786
      Spiros Tsalikis authored and Kitware Robot's avatar Kitware Robot committed
      
      b608770c Common/DataModel/Testing: avoid ODR violations of helper functions
      
      Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
      Acked-by: default avatarBen Boeckel <ben.boeckel@kitware.com>
      Merge-request: !9333
      4bb02786
    • Sean McBride's avatar
      Fixed more warnings from cdash · 6edc5f80
      Sean McBride authored
      Specifically, fixes:
      
      /Common/DataModel/vtkDataSet.cxx:1075:44: warning: constructor parameter 'BitSet' shadows the field 'BitSet' of 'IsAnyBitSetFunctor' [-Wshadow-field-in-constructor]
        IsAnyBitSetFunctor(vtkUnsignedCharArray* BitSet, int BitFlag)
                                                 ^
      /Common/DataModel/vtkDataSet.cxx:1075:56: warning: constructor parameter 'BitFlag' shadows the field 'BitFlag' of 'IsAnyBitSetFunctor' [-Wshadow-field-in-constructor]
        IsAnyBitSetFunctor(vtkUnsignedCharArray* BitSet, int BitFlag)
      
      /Filters/General/vtkFiniteElementFieldDistributor.cxx:819:43: warning: comparison of integers of different signs: 'std::vector<std::vector<double>>::size_type' (aka 'unsigned long') and 'const int' [-Wsign-compare]
              reqInit |= (*hCurlMats)[i].size() != npts;
                         ~~~~~~~~~~~~~~~~~~~~~~ ^  ~~~~
      /Filters/General/vtkFiniteElementFieldDistributor.cxx:820:42: warning: comparison of integers of different signs: 'std::vector<std::vector<double>>::size_type' (aka 'unsigned long') and 'const int' [-Wsign-compare]
              reqInit |= (*hDivMats)[i].size() != npts;
                         ~~~~~~~~~~~~~~~~~~~~~ ^  ~~~~
      
      /Filters/General/vtkFiniteElementFieldDistributor.cxx:1513:16: warning: moving a temporary object prevents copy elision [-Wpessimizing-move]
            coeffs = std::move(::GetEdgeAttributes(fieldName, oldCd, cellId));
                     ^
      
      /Filters/General/vtkFiniteElementFieldDistributor.cxx:1517:16: warning: moving a temporary object prevents copy elision [-Wpessimizing-move]
            coeffs = std::move(::GetFaceAttributes(fieldName, oldCd, cellId));
                     ^
      
      /IO/IOSS/vtkIOSSReader.cxx:192:26: warning: unused function 'Split' [-Wunused-function]
      
      /Charts/Core/vtkChartParallelCoordinates.cxx:230:27: warning: comparison of integers of different signs: 'int' and 'std::vector<std::vector<float>>::size_type' (aka 'unsigned long') [-Wsign-compare]
      
      /IO/Cesium3DTiles/TreeInformation.cxx:613:92: warning: comparison of integers of different signs: 'int' and 'size_t' (aka 'unsigned long') [-Wsign-compare]
      
      /IO/Cesium3DTiles/TreeInformation.cxx:659:21: warning: comparison of integers of different signs: 'int' and 'std::vector<std::vector<unsigned long>>::size_type' (aka 'unsigned long') [-Wsign-compare]
      
      /IO/Cesium3DTiles/TreeInformation.cxx:661:23: warning: comparison of integers of different signs: 'int' and 'std::vector<unsigned long>::size_type' (aka 'unsigned long') [-Wsign-compare]
      
      /Rendering/Volume/Testing/Cxx/TestGPURayCastMapperShadows.cxx:46:20: warning: unused function 'idxToCoords' [-Wunused-function]
      
      /Filters/Geometry/vtkGeometryFilter.cxx:2104:7: warning: field 'Strips' will be initialized after field 'VertsConnPtr' [-Wreorder-ctor]
      
      /Charts/Core/vtkChartParallelCoordinates.cxx:234:23: warning: comparison of integers of different signs: 'int' and 'size_t' (aka 'unsigned long') [-Wsign-compare]
      
      /Common/DataModel/vtkCellTreeLocator.cxx:315:9: warning: field 'Cnt' will be initialized after field 'Min' [-Wreorder-ctor]
      
      /Common/DataModel/vtkCellTreeLocator.cxx:1227:22: warning: comparison of integers of different signs: 'int' and 'std::vector<std::pair<vtkBoundingBox, int>>::size_type' (aka 'unsigned long') [-Wsign-compare]
      
      /IO/IOSS/vtkIOSSWriter.cxx:62:18: warning: private field 'Self' is not used [-Wunused-private-field]
      
      /IO/IOSS/vtkIOSSModel.cxx:780:24: warning: loop variable 'tuple' binds to a temporary value produced by a range of type 'typename detail::SelectTupleRange<vtkIntArray *, 0>::type' (aka 'vtk::detail::TupleRange<vtkAOSDataArrayTemplate<int>, 0>') [-Wrange-loop-bind-reference]
      6edc5f80
    • Gaspard Thevenon's avatar
      Merge topic 'blue-noise-renderer' · 67fd6511
      Gaspard Thevenon authored and Kitware Robot's avatar Kitware Robot committed
      
      c4874d9b Replace vtkOpenGLRenderWindow noise texture by blue noise
      
      Acked-by: default avatarKitware Robot <kwrobot@kitware.com>
      Merge-request: !9327
      67fd6511
    • Spiros Tsalikis's avatar
      Common/DataModel/Testing: avoid ODR violations of helper functions · b608770c
      Spiros Tsalikis authored
      Found by GCC 12.
      
      Fixes: #18581
      b608770c
    • Gaspard Thevenon's avatar
    • Kitware Robot's avatar
      VTK Nightly Date Stamp · 40d19094
      Kitware Robot authored
      40d19094
  3. Jun 28, 2022
Loading