File: vtkSMPTools.diff

package info (click to toggle)
sight 25.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,252 kB
  • sloc: cpp: 310,629; xml: 17,622; ansic: 9,960; python: 1,379; sh: 144; makefile: 33
file content (38 lines) | stat: -rw-r--r-- 1,434 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
This is a dumb fix to make GCC 13.2 happy.

--- /usr/include/vtk-9.1/vtkSMPTools.h  2021-11-04 16:18:11.000000000 +0100
+++ ../../../sight/lib/io/vtk/patch/vtkSMPTools.h      2025-04-07 11:24:01.180010219 +0200
@@ -30,11 +30,11 @@
 #ifndef vtkSMPTools_h
 #define vtkSMPTools_h
 
-#include "vtkCommonCoreModule.h" // For export macro
-#include "vtkObject.h"
+ #include <vtkCommonCoreModule.h> // For export macro
+ #include <vtkObject.h>
 
-#include "SMP/Common/vtkSMPToolsAPI.h"
-#include "vtkSMPThreadLocal.h" // For Initialized
+ #include <SMP/Common/vtkSMPToolsAPI.h>
+ #include <vtkSMPThreadLocal.h> // For Initialized
 
 #include <functional>  // For std::function
 #include <iterator>    // For std::iterator
@@ -103,7 +103,7 @@
   }
   vtkSMPTools_FunctorInternal<Functor, false>& operator=(
     const vtkSMPTools_FunctorInternal<Functor, false>&);
-  vtkSMPTools_FunctorInternal<Functor, false>(const vtkSMPTools_FunctorInternal<Functor, false>&);
+   vtkSMPTools_FunctorInternal(const vtkSMPTools_FunctorInternal<Functor, false>&);
 };
 
 template <typename Functor>
@@ -134,7 +134,7 @@
   }
   vtkSMPTools_FunctorInternal<Functor, true>& operator=(
     const vtkSMPTools_FunctorInternal<Functor, true>&);
-  vtkSMPTools_FunctorInternal<Functor, true>(const vtkSMPTools_FunctorInternal<Functor, true>&);
+   vtkSMPTools_FunctorInternal(const vtkSMPTools_FunctorInternal<Functor, true>&);
 };
 
 template <typename Functor>