Skip to content

Commit 42187d6

Browse files
committed
Create patch file
1 parent 78de692 commit 42187d6

File tree

1 file changed

+189
-0
lines changed

1 file changed

+189
-0
lines changed

cctools-repo/patches/ppl-1.1.patch

Lines changed: 189 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,189 @@
1+
Index: CO_Tree.cc
2+
IDEA additional info:
3+
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
4+
<+>UTF-8
5+
===================================================================
6+
--- CO_Tree.cc (date 1527399793000)
7+
+++ CO_Tree.cc (date 1527400409000)
8+
@@ -954,7 +954,7 @@
9+
--subtree_size;
10+
}
11+
12+
- const ptrdiff_t distance = first_unused_index - indexes;
13+
+ const std::ptrdiff_t distance = first_unused_index - indexes;
14+
PPL_ASSERT(distance >= 0);
15+
return static_cast<dimension_type>(distance);
16+
}
17+
Index: CO_Tree_defs.hh
18+
IDEA additional info:
19+
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
20+
<+>UTF-8
21+
===================================================================
22+
--- CO_Tree_defs.hh (date 1527399793000)
23+
+++ CO_Tree_defs.hh (date 1527400409000)
24+
@@ -159,7 +159,7 @@
25+
26+
typedef std::bidirectional_iterator_tag iterator_category;
27+
typedef const data_type value_type;
28+
- typedef ptrdiff_t difference_type;
29+
+ typedef std::ptrdiff_t difference_type;
30+
typedef value_type* pointer;
31+
typedef data_type_const_reference reference;
32+
33+
@@ -314,7 +314,7 @@
34+
35+
typedef std::bidirectional_iterator_tag iterator_category;
36+
typedef data_type value_type;
37+
- typedef ptrdiff_t difference_type;
38+
+ typedef std::ptrdiff_t difference_type;
39+
typedef value_type* pointer;
40+
typedef value_type& reference;
41+
42+
Index: CO_Tree_inlines.hh
43+
IDEA additional info:
44+
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
45+
<+>UTF-8
46+
===================================================================
47+
--- CO_Tree_inlines.hh (date 1527399793000)
48+
+++ CO_Tree_inlines.hh (date 1527400409000)
49+
@@ -31,7 +31,7 @@
50+
PPL_ASSERT(itr.current_index != 0);
51+
PPL_ASSERT(itr.current_index >= indexes + 1);
52+
PPL_ASSERT(itr.current_index <= indexes + reserved_size);
53+
- const ptrdiff_t index = itr.current_index - indexes;
54+
+ const std::ptrdiff_t index = itr.current_index - indexes;
55+
return static_cast<dimension_type>(index);
56+
}
57+
58+
@@ -40,7 +40,7 @@
59+
PPL_ASSERT(itr.current_index != 0);
60+
PPL_ASSERT(itr.current_index >= indexes + 1);
61+
PPL_ASSERT(itr.current_index <= indexes + reserved_size);
62+
- const ptrdiff_t index = itr.current_index - indexes;
63+
+ const std::ptrdiff_t index = itr.current_index - indexes;
64+
return static_cast<dimension_type>(index);
65+
}
66+
67+
@@ -772,7 +772,7 @@
68+
p -= (offset - 1);
69+
while (*p == unused_index)
70+
++p;
71+
- const ptrdiff_t distance = p - tree.indexes;
72+
+ const std::ptrdiff_t distance = p - tree.indexes;
73+
PPL_ASSERT(distance >= 0);
74+
i = static_cast<dimension_type>(distance);
75+
offset = least_significant_one_mask(i);
76+
@@ -787,7 +787,7 @@
77+
p += (offset - 1);
78+
while (*p == unused_index)
79+
--p;
80+
- const ptrdiff_t distance = p - tree.indexes;
81+
+ const std::ptrdiff_t distance = p - tree.indexes;
82+
PPL_ASSERT(distance >= 0);
83+
i = static_cast<dimension_type>(distance);
84+
offset = least_significant_one_mask(i);
85+
Index: Congruence_System_defs.hh
86+
IDEA additional info:
87+
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
88+
<+>UTF-8
89+
===================================================================
90+
--- Congruence_System_defs.hh (date 1527399793000)
91+
+++ Congruence_System_defs.hh (date 1527400409000)
92+
@@ -249,7 +249,7 @@
93+
class const_iterator
94+
: public std::iterator<std::forward_iterator_tag,
95+
Congruence,
96+
- ptrdiff_t,
97+
+ std::ptrdiff_t,
98+
const Congruence*,
99+
const Congruence&> {
100+
public:
101+
Index: Constraint_System_defs.hh
102+
IDEA additional info:
103+
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
104+
<+>UTF-8
105+
===================================================================
106+
--- Constraint_System_defs.hh (date 1527399793000)
107+
+++ Constraint_System_defs.hh (date 1527400409000)
108+
@@ -609,7 +609,7 @@
109+
class Parma_Polyhedra_Library::Constraint_System_const_iterator
110+
: public std::iterator<std::forward_iterator_tag,
111+
Constraint,
112+
- ptrdiff_t,
113+
+ std::ptrdiff_t,
114+
const Constraint*,
115+
const Constraint&> {
116+
public:
117+
Index: Dense_Row_defs.hh
118+
IDEA additional info:
119+
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
120+
<+>UTF-8
121+
===================================================================
122+
--- Dense_Row_defs.hh (date 1527399793000)
123+
+++ Dense_Row_defs.hh (date 1527400409000)
124+
@@ -433,7 +433,7 @@
125+
126+
typedef std::bidirectional_iterator_tag iterator_category;
127+
typedef Coefficient value_type;
128+
- typedef ptrdiff_t difference_type;
129+
+ typedef std::ptrdiff_t difference_type;
130+
typedef value_type* pointer;
131+
typedef value_type& reference;
132+
133+
@@ -474,7 +474,7 @@
134+
public:
135+
136+
typedef const Coefficient value_type;
137+
- typedef ptrdiff_t difference_type;
138+
+ typedef std::ptrdiff_t difference_type;
139+
typedef value_type* pointer;
140+
typedef Coefficient_traits::const_reference reference;
141+
142+
Index: Generator_System_defs.hh
143+
IDEA additional info:
144+
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
145+
<+>UTF-8
146+
===================================================================
147+
--- Generator_System_defs.hh (date 1527399793000)
148+
+++ Generator_System_defs.hh (date 1527400409000)
149+
@@ -679,7 +679,7 @@
150+
class Parma_Polyhedra_Library::Generator_System_const_iterator
151+
: public std::iterator<std::forward_iterator_tag,
152+
Generator,
153+
- ptrdiff_t,
154+
+ std::ptrdiff_t,
155+
const Generator*,
156+
const Generator&> {
157+
public:
158+
Index: Grid_Generator_System_defs.hh
159+
IDEA additional info:
160+
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
161+
<+>UTF-8
162+
===================================================================
163+
--- Grid_Generator_System_defs.hh (date 1527399793000)
164+
+++ Grid_Generator_System_defs.hh (date 1527400409000)
165+
@@ -277,7 +277,7 @@
166+
class const_iterator
167+
: public std::iterator<std::forward_iterator_tag,
168+
Grid_Generator,
169+
- ptrdiff_t,
170+
+ std::ptrdiff_t,
171+
const Grid_Generator*,
172+
const Grid_Generator&> {
173+
public:
174+
Index: Linear_Expression_Interface_defs.hh
175+
IDEA additional info:
176+
Subsystem: com.intellij.openapi.diff.impl.patch.CharsetEP
177+
<+>UTF-8
178+
===================================================================
179+
--- Linear_Expression_Interface_defs.hh (date 1527399793000)
180+
+++ Linear_Expression_Interface_defs.hh (date 1527400409000)
181+
@@ -65,7 +65,7 @@
182+
public:
183+
typedef std::bidirectional_iterator_tag iterator_category;
184+
typedef const Coefficient value_type;
185+
- typedef ptrdiff_t difference_type;
186+
+ typedef std::ptrdiff_t difference_type;
187+
typedef value_type* pointer;
188+
typedef Coefficient_traits::const_reference reference;
189+

0 commit comments

Comments
 (0)