forked from alexlarsson/nightly-build-apps
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinkscape-gcc-bug.patch
40 lines (39 loc) · 1.42 KB
/
inkscape-gcc-bug.patch
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
39
=== modified file 'src/util/glib-list-iterators.h'
--- inkscape/src/util/glib-list-iterators.h 2012-02-15 15:03:26 +0000
+++ inkscape/src/util/glib-list-iterators.h 2015-11-20 15:39:45 +0000
@@ -32,7 +32,7 @@
class GSListConstIterator<T *> {
public:
typedef std::forward_iterator_tag iterator_category;
- typedef T * const value_type G_GNUC_MAY_ALIAS;
+ typedef T * const value_type ;
typedef std::ptrdiff_t difference_type;
typedef value_type *pointer;
typedef value_type &reference;
@@ -71,7 +71,7 @@
class GSListIterator<T *> {
public:
typedef std::forward_iterator_tag iterator_category;
- typedef T *value_type G_GNUC_MAY_ALIAS;
+ typedef T *value_type ;
typedef std::ptrdiff_t difference_type;
typedef value_type *pointer;
typedef value_type &reference;
@@ -116,7 +116,7 @@
class GListConstIterator<T *> {
public:
typedef std::bidirectional_iterator_tag iterator_category;
- typedef T * const value_type G_GNUC_MAY_ALIAS;
+ typedef T * const value_type ;
typedef std::ptrdiff_t difference_type;
typedef value_type *pointer;
typedef value_type &reference;
@@ -165,7 +165,7 @@
class GListIterator<T *> {
public:
typedef std::bidirectional_iterator_tag iterator_category;
- typedef T *value_type G_GNUC_MAY_ALIAS;
+ typedef T *value_type ;
typedef std::ptrdiff_t difference_type;
typedef value_type *pointer;
typedef value_type &reference;