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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351 | In file included from ./src/util/prec.hpp:97:0,
from ./src/main.cpp:9:
./src/util/smart_ptr.hpp:20:3: error: #error Need fast atomic type for intrusive_ptr
#error Need fast atomic type for intrusive_ptr
^
In file included from ./src/main.cpp:9:0:
./src/util/prec.hpp:48:9: error: ‘wxBitmap’ does not name a type
typedef wxBitmap Bitmap;
^
./src/util/prec.hpp:49:9: error: ‘wxImage’ does not name a type
typedef wxImage Image;
^
./src/util/prec.hpp:50:9: error: ‘wxColour’ does not name a type
typedef wxColour Color;
^
./src/util/prec.hpp:51:9: error: ‘wxDC’ does not name a type
typedef wxDC DC;
^
In file included from ./src/script/value.hpp:13:0,
from ./src/util/io/get_member.hpp:13,
from ./src/util/reflect.hpp:19,
from ./src/util/prec.hpp:101,
from ./src/main.cpp:9:
./src/gfx/color.hpp:22:29: error: expected class-name before ‘{’ token
class AColor : public Color {
^
./src/gfx/color.hpp:27:22: error: ‘Color’ does not name a type
inline AColor(const Color& color, Byte a = 255) : Color(color), alpha(a) {}
^
./src/gfx/color.hpp:27:29: error: ISO C++ forbids declaration of ‘color’ with no type [-fpermissive]
inline AColor(const Color& color, Byte a = 255) : Color(color), alpha(a) {}
^
./src/gfx/color.hpp: In constructor ‘AColor::AColor(Byte, Byte, Byte, Byte)’:
./src/gfx/color.hpp:26:56: error: class ‘AColor’ does not have any field named ‘Color’
inline AColor(Byte r, Byte g, Byte b, Byte a = 255) : Color(r,g,b), alpha(a) {}
^
./src/gfx/color.hpp: In constructor ‘AColor::AColor(const int&, Byte)’:
./src/gfx/color.hpp:27:56: error: class ‘AColor’ does not have any field named ‘Color’
inline AColor(const Color& color, Byte a = 255) : Color(color), alpha(a) {}
^
./src/gfx/color.hpp: In member function ‘bool AColor::operator==(const AColor&) const’:
./src/gfx/color.hpp:30:28: error: ISO C++ forbids declaration of ‘type name’ with no type [-fpermissive]
return static_cast<const Color&>(*this) == static_cast<const Color&>(that) && alpha == that.alpha;
^
./src/gfx/color.hpp:30:28: error: expected ‘>’ before ‘Color’
./src/gfx/color.hpp:30:28: error: expected ‘(’ before ‘Color’
./src/gfx/color.hpp:30:28: error: ‘Color’ was not declared in this scope
./src/gfx/color.hpp:30:34: error: expected primary-expression before ‘>’ token
return static_cast<const Color&>(*this) == static_cast<const Color&>(that) && alpha == that.alpha;
^
./src/gfx/color.hpp:30:64: error: ISO C++ forbids declaration of ‘type name’ with no type [-fpermissive]
return static_cast<const Color&>(*this) == static_cast<const Color&>(that) && alpha == that.alpha;
^
./src/gfx/color.hpp:30:64: error: expected ‘>’ before ‘Color’
./src/gfx/color.hpp:30:64: error: expected ‘(’ before ‘Color’
./src/gfx/color.hpp:30:70: error: expected primary-expression before ‘>’ token
return static_cast<const Color&>(*this) == static_cast<const Color&>(that) && alpha == that.alpha;
^
./src/gfx/color.hpp:30:100: error: expected ‘)’ before ‘;’ token
return static_cast<const Color&>(*this) == static_cast<const Color&>(that) && alpha == that.alpha;
^
./src/gfx/color.hpp:30:100: error: expected ‘)’ before ‘;’ token
./src/gfx/color.hpp: At global scope:
./src/gfx/color.hpp:57:15: error: expected ‘)’ before ‘const’
RGB(wxColour const& x) : r(x.Red()), g(x.Green()), b(x.Blue()) {}
^
./src/gfx/color.hpp:61:18: error: expected type-specifier before ‘wxColour’
inline operator wxColour() const {
^
./src/gfx/color.hpp:85:1: error: ‘Color’ does not name a type
Color parse_color(const String& value);
^
./src/gfx/color.hpp:100:1: error: ‘Color’ does not name a type
Color lerp(const Color& a, const Color& b, double t);
^
./src/gfx/color.hpp:105:1: error: ‘Color’ does not name a type
Color hsl2rgb(double h, double s, double l);
^
./src/gfx/color.hpp:108:1: error: ‘Color’ does not name a type
Color darken(const Color& c);
^
./src/gfx/color.hpp:111:1: error: ‘Color’ does not name a type
Color contrasting_color(const Color& c);
^
./src/gfx/color.hpp:114:1: error: ‘Color’ does not name a type
Color saturate(const Color& c, double amount);
^
./src/gfx/color.hpp:131:14: error: variable or field ‘recolor’ declared void
void recolor(Image& img, RGB cr, RGB cg, RGB cb, RGB cw);
^
./src/gfx/color.hpp:131:14: error: ‘Image’ was not declared in this scope
./src/gfx/color.hpp:131:21: error: ‘img’ was not declared in this scope
void recolor(Image& img, RGB cr, RGB cg, RGB cb, RGB cw);
^
./src/gfx/color.hpp:131:30: error: expected primary-expression before ‘cr’
void recolor(Image& img, RGB cr, RGB cg, RGB cb, RGB cw);
^
./src/gfx/color.hpp:131:38: error: expected primary-expression before ‘cg’
void recolor(Image& img, RGB cr, RGB cg, RGB cb, RGB cw);
^
./src/gfx/color.hpp:131:46: error: expected primary-expression before ‘cb’
void recolor(Image& img, RGB cr, RGB cg, RGB cb, RGB cw);
^
./src/gfx/color.hpp:131:54: error: expected primary-expression before ‘cw’
void recolor(Image& img, RGB cr, RGB cg, RGB cb, RGB cw);
^
./src/gfx/color.hpp:133:14: error: variable or field ‘recolor’ declared void
void recolor(Image& img, RGB cr);
^
./src/gfx/color.hpp:133:14: error: ‘Image’ was not declared in this scope
./src/gfx/color.hpp:133:21: error: ‘img’ was not declared in this scope
void recolor(Image& img, RGB cr);
^
./src/gfx/color.hpp:133:30: error: expected primary-expression before ‘cr’
void recolor(Image& img, RGB cr);
^
./src/gfx/color.hpp:136:17: error: variable or field ‘fill_image’ declared void
void fill_image(Image& image, RGB color);
^
./src/gfx/color.hpp:136:17: error: ‘Image’ was not declared in this scope
./src/gfx/color.hpp:136:24: error: ‘image’ was not declared in this scope
void fill_image(Image& image, RGB color);
^
./src/gfx/color.hpp:136:35: error: expected primary-expression before ‘color’
void fill_image(Image& image, RGB color);
^
In file included from ./src/util/real_point.hpp:18:0,
from ./src/util/alignment.hpp:13,
from ./src/script/scriptable.hpp:15,
from ./src/data/game.hpp:14,
from ./src/main.cpp:12:
./src/util/vector2d.hpp:108:18: error: expected type-specifier before ‘wxPoint’
inline operator wxPoint() const {
^
In file included from ./src/util/alignment.hpp:13:0,
from ./src/script/scriptable.hpp:15,
from ./src/data/game.hpp:14,
from ./src/main.cpp:12:
./src/util/real_point.hpp:39:25: error: expected ‘)’ before ‘s’
inline RealSize(wxSize s)
^
./src/util/real_point.hpp:46:33: error: ‘wxImage’ does not name a type
inline explicit RealSize(const wxImage& img)
^
./src/util/real_point.hpp:46:42: error: ISO C++ forbids declaration of ‘img’ with no type [-fpermissive]
inline explicit RealSize(const wxImage& img)
^
./src/util/real_point.hpp:50:33: error: ‘wxBitmap’ does not name a type
inline explicit RealSize(const wxBitmap& img)
^
./src/util/real_point.hpp:50:43: error: ISO C++ forbids declaration of ‘img’ with no type [-fpermissive]
inline explicit RealSize(const wxBitmap& img)
^
./src/util/real_point.hpp:50:18: error: ‘RealSize::RealSize(const int&)’ cannot be overloaded
inline explicit RealSize(const wxBitmap& img)
^
./src/util/real_point.hpp:46:18: error: with ‘RealSize::RealSize(const int&)’
inline explicit RealSize(const wxImage& img)
^
./src/util/real_point.hpp:74:18: error: expected type-specifier before ‘wxSize’
inline operator wxSize() {
^
./src/util/real_point.hpp: In constructor ‘RealSize::RealSize(const int&)’:
./src/util/real_point.hpp:47:15: error: request for member ‘GetWidth’ in ‘img’, which is of non-class type ‘const int’
: width(img.GetWidth()), height(img.GetHeight())
^
./src/util/real_point.hpp:47:39: error: request for member ‘GetHeight’ in ‘img’, which is of non-class type ‘const int’
: width(img.GetWidth()), height(img.GetHeight())
^
./src/util/real_point.hpp: In constructor ‘RealSize::RealSize(const int&)’:
./src/util/real_point.hpp:51:15: error: request for member ‘GetWidth’ in ‘img’, which is of non-class type ‘const int’
: width(img.GetWidth()), height(img.GetHeight())
^
./src/util/real_point.hpp:51:39: error: request for member ‘GetHeight’ in ‘img’, which is of non-class type ‘const int’
: width(img.GetWidth()), height(img.GetHeight())
^
./src/util/real_point.hpp: At global scope:
./src/util/real_point.hpp:135:24: error: ‘wxRect’ does not name a type
inline RealRect(const wxRect& rect)
^
./src/util/real_point.hpp:135:32: error: ISO C++ forbids declaration of ‘rect’ with no type [-fpermissive]
inline RealRect(const wxRect& rect)
^
./src/util/real_point.hpp:171:18: error: expected type-specifier before ‘wxRect’
inline operator wxRect() const {
^
./src/util/real_point.hpp:183:9: error: ‘wxRect’ does not name a type
inline wxRect toRect() const {
^
./src/util/real_point.hpp: In constructor ‘RealRect::RealRect(const int&)’:
./src/util/real_point.hpp:136:20: error: request for member ‘x’ in ‘rect’, which is of non-class type ‘const int’
: RealPoint(rect.x, rect.y), RealSize(rect.width, rect.height)
^
./src/util/real_point.hpp:136:28: error: request for member ‘y’ in ‘rect’, which is of non-class type ‘const int’
: RealPoint(rect.x, rect.y), RealSize(rect.width, rect.height)
^
./src/util/real_point.hpp:136:46: error: request for member ‘width’ in ‘rect’, which is of non-class type ‘const int’
: RealPoint(rect.x, rect.y), RealSize(rect.width, rect.height)
^
./src/util/real_point.hpp:136:58: error: request for member ‘height’ in ‘rect’, which is of non-class type ‘const int’
: RealPoint(rect.x, rect.y), RealSize(rect.width, rect.height)
^
In file included from ./src/gfx/generated_image.hpp:15:0,
from ./src/script/to_value.hpp:18,
from ./src/script/scriptable.hpp:19,
from ./src/data/game.hpp:14,
from ./src/main.cpp:12:
./src/gfx/gfx.hpp: At global scope:
./src/gfx/gfx.hpp:25:21: error: ‘Image’ does not name a type
void resample(const Image& img_in, Image& img_out);
^
./src/gfx/gfx.hpp:25:28: error: ISO C++ forbids declaration of ‘img_in’ with no type [-fpermissive]
void resample(const Image& img_in, Image& img_out);
^
./src/gfx/gfx.hpp:25:36: error: ‘Image’ has not been declared
void resample(const Image& img_in, Image& img_out);
^
./src/gfx/gfx.hpp:26:1: error: ‘Image’ does not name a type
Image resample(const Image& img_in, int width, int height);
^
./src/gfx/gfx.hpp:30:30: error: ‘Image’ does not name a type
void resample_and_clip(const Image& img_in, Image& img_out, wxRect rect);
^
./src/gfx/gfx.hpp:30:37: error: ISO C++ forbids declaration of ‘img_in’ with no type [-fpermissive]
void resample_and_clip(const Image& img_in, Image& img_out, wxRect rect);
^
./src/gfx/gfx.hpp:30:45: error: ‘Image’ has not been declared
void resample_and_clip(const Image& img_in, Image& img_out, wxRect rect);
^
./src/gfx/gfx.hpp:30:61: error: ‘wxRect’ has not been declared
void resample_and_clip(const Image& img_in, Image& img_out, wxRect rect);
^
./src/gfx/gfx.hpp:40:37: error: ‘Image’ does not name a type
void resample_preserve_aspect(const Image& img_in, Image& img_out);
^
./src/gfx/gfx.hpp:40:44: error: ISO C++ forbids declaration of ‘img_in’ with no type [-fpermissive]
void resample_preserve_aspect(const Image& img_in, Image& img_out);
^
./src/gfx/gfx.hpp:40:52: error: ‘Image’ has not been declared
void resample_preserve_aspect(const Image& img_in, Image& img_out);
^
./src/gfx/gfx.hpp:41:1: error: ‘Image’ does not name a type
Image resample_preserve_aspect(const Image& img_in, int width, int height);
^
./src/gfx/gfx.hpp:45:27: error: ‘Image’ does not name a type
void sharp_resample(const Image& img_in, Image& img_out, int amount);
^
./src/gfx/gfx.hpp:45:34: error: ISO C++ forbids declaration of ‘img_in’ with no type [-fpermissive]
void sharp_resample(const Image& img_in, Image& img_out, int amount);
^
./src/gfx/gfx.hpp:45:42: error: ‘Image’ has not been declared
void sharp_resample(const Image& img_in, Image& img_out, int amount);
^
./src/gfx/gfx.hpp:48:36: error: ‘Image’ does not name a type
void sharp_resample_and_clip(const Image& img_in, Image& img_out, wxRect rect, int amount);
^
./src/gfx/gfx.hpp:48:43: error: ISO C++ forbids declaration of ‘img_in’ with no type [-fpermissive]
void sharp_resample_and_clip(const Image& img_in, Image& img_out, wxRect rect, int amount);
^
./src/gfx/gfx.hpp:48:51: error: ‘Image’ has not been declared
void sharp_resample_and_clip(const Image& img_in, Image& img_out, wxRect rect, int amount);
^
./src/gfx/gfx.hpp:48:67: error: ‘wxRect’ has not been declared
void sharp_resample_and_clip(const Image& img_in, Image& img_out, wxRect rect, int amount);
^
./src/gfx/gfx.hpp:56:26: error: variable or field ‘draw_resampled_text’ declared void
void draw_resampled_text(DC& dc, const RealPoint& pos, const RealRect& rect, double stretch, Radians angle, AColor color, const String& text, int blur_radius = 0, int repeat = 1);
^
./src/gfx/gfx.hpp:56:26: error: ‘DC’ was not declared in this scope
./src/gfx/gfx.hpp:56:30: error: ‘dc’ was not declared in this scope
void draw_resampled_text(DC& dc, const RealPoint& pos, const RealRect& rect, double stretch, Radians angle, AColor color, const String& text, int blur_radius = 0, int repeat = 1);
^
./src/gfx/gfx.hpp:56:34: error: expected primary-expression before ‘const’
void draw_resampled_text(DC& dc, const RealPoint& pos, const RealRect& rect, double stretch, Radians angle, AColor color, const String& text, int blur_radius = 0, int repeat = 1);
^
./src/gfx/gfx.hpp:56:56: error: expected primary-expression before ‘const’
void draw_resampled_text(DC& dc, const RealPoint& pos, const RealRect& rect, double stretch, Radians angle, AColor color, const String& text, int blur_radius = 0, int repeat = 1);
^
./src/gfx/gfx.hpp:56:78: error: expected primary-expression before ‘double’
void draw_resampled_text(DC& dc, const RealPoint& pos, const RealRect& rect, double stretch, Radians angle, AColor color, const String& text, int blur_radius = 0, int repeat = 1);
^
./src/gfx/gfx.hpp:56:102: error: expected primary-expression before ‘angle’
void draw_resampled_text(DC& dc, const RealPoint& pos, const RealRect& rect, double stretch, Radians angle, AColor color, const String& text, int blur_radius = 0, int repeat = 1);
^
./src/gfx/gfx.hpp:56:116: error: expected primary-expression before ‘color’
void draw_resampled_text(DC& dc, const RealPoint& pos, const RealRect& rect, double stretch, Radians angle, AColor color, const String& text, int blur_radius = 0, int repeat = 1);
^
./src/gfx/gfx.hpp:56:123: error: expected primary-expression before ‘const’
void draw_resampled_text(DC& dc, const RealPoint& pos, const RealRect& rect, double stretch, Radians angle, AColor color, const String& text, int blur_radius = 0, int repeat = 1);
^
In file included from ./src/gfx/generated_image.hpp:15:0,
from ./src/script/to_value.hpp:18,
from ./src/script/scriptable.hpp:19,
from ./src/data/game.hpp:14,
from ./src/main.cpp:12:
./src/gfx/gfx.hpp:56:143: error: expected primary-expression before ‘int’
void draw_resampled_text(DC& dc, const RealPoint& pos, const RealRect& rect, double stretch, Radians angle, AColor color, const String& text, int blur_radius = 0, int repeat = 1);
^
./src/gfx/gfx.hpp:56:164: error: expected primary-expression before ‘int’
void draw_resampled_text(DC& dc, const RealPoint& pos, const RealRect& rect, double stretch, Radians angle, AColor color, const String& text, int blur_radius = 0, int repeat = 1);
^
./src/gfx/gfx.hpp:64:1: error: ‘Image’ does not name a type
Image rotate_image(const Image& image, Radians angle);
^
./src/gfx/gfx.hpp:67:1: error: ‘Image’ does not name a type
Image flip_image_horizontal(const Image& image);
^
./src/gfx/gfx.hpp:69:1: error: ‘Image’ does not name a type
Image flip_image_vertical(const Image& image);
^
./src/gfx/gfx.hpp:78:19: error: variable or field ‘linear_blend’ declared void
void linear_blend(Image& img1, const Image& img2, double x1,double y1, double x2,double y2);
^
./src/gfx/gfx.hpp:78:19: error: ‘Image’ was not declared in this scope
./src/gfx/gfx.hpp:78:26: error: ‘img1’ was not declared in this scope
void linear_blend(Image& img1, const Image& img2, double x1,double y1, double x2,double y2);
^
./src/gfx/gfx.hpp:78:32: error: expected primary-expression before ‘const’
void linear_blend(Image& img1, const Image& img2, double x1,double y1, double x2,double y2);
^
./src/gfx/gfx.hpp:78:51: error: expected primary-expression before ‘double’
void linear_blend(Image& img1, const Image& img2, double x1,double y1, double x2,double y2);
^
./src/gfx/gfx.hpp:78:61: error: expected primary-expression before ‘double’
void linear_blend(Image& img1, const Image& img2, double x1,double y1, double x2,double y2);
^
./src/gfx/gfx.hpp:78:72: error: expected primary-expression before ‘double’
void linear_blend(Image& img1, const Image& img2, double x1,double y1, double x2,double y2);
^
./src/gfx/gfx.hpp:78:82: error: expected primary-expression before ‘double’
void linear_blend(Image& img1, const Image& img2, double x1,double y1, double x2,double y2);
^
./src/gfx/gfx.hpp:85:17: error: variable or field ‘mask_blend’ declared void
void mask_blend(Image& img1, const Image& img2, const Image& mask);
^
./src/gfx/gfx.hpp:85:17: error: ‘Image’ was not declared in this scope
./src/gfx/gfx.hpp:85:24: error: ‘img1’ was not declared in this scope
void mask_blend(Image& img1, const Image& img2, const Image& mask);
^
./src/gfx/gfx.hpp:85:30: error: expected primary-expression before ‘const’
void mask_blend(Image& img1, const Image& img2, const Image& mask);
^
./src/gfx/gfx.hpp:85:49: error: expected primary-expression before ‘const’
void mask_blend(Image& img1, const Image& img2, const Image& mask);
^
./src/gfx/gfx.hpp:90:15: error: variable or field ‘saturate’ declared void
void saturate(Image& image, double amount);
^
./src/gfx/gfx.hpp:90:15: error: ‘Image’ was not declared in this scope
./src/gfx/gfx.hpp:90:22: error: ‘image’ was not declared in this scope
void saturate(Image& image, double amount);
^
./src/gfx/gfx.hpp:90:29: error: expected primary-expression before ‘double’
void saturate(Image& image, double amount);
^
./src/gfx/gfx.hpp:93:13: error: variable or field ‘invert’ declared void
void invert(Image& img);
^
./src/gfx/gfx.hpp:93:13: error: ‘Image’ was not declared in this scope
./src/gfx/gfx.hpp:93:20: error: ‘img’ was not declared in this scope
void invert(Image& img);
^
./src/gfx/gfx.hpp:131:20: error: variable or field ‘combine_image’ declared void
void combine_image(Image& a, const Image& b, ImageCombine combine);
^
./src/gfx/gfx.hpp:131:20: error: ‘Image’ was not declared in this scope
./src/gfx/gfx.hpp:131:27: error: ‘a’ was not declared in this scope
void combine_image(Image& a, const Image& b, ImageCombine combine);
^
./src/gfx/gfx.hpp:131:30: error: expected primary-expression before ‘const’
void combine_image(Image& a, const Image& b, ImageCombine combine);
^
./src/gfx/gfx.hpp:131:59: error: expected primary-expression before ‘combine’
void combine_image(Image& a, const Image& b, ImageCombine combine);
^
./src/gfx/gfx.hpp:134:25: error: variable or field ‘draw_combine_image’ declared void
void draw_combine_image(DC& dc, UInt x, UInt y, const Image& img, ImageCombine combine);
^
./src/gfx/gfx.hpp:134:25: error: ‘DC’ was not declared in this scope
./src/gfx/gfx.hpp:134:29: error: ‘dc’ was not declared in this scope
void draw_combine_image(DC& dc, UInt x, UInt y, const Image& img, ImageCombine combine);
^
./src/gfx/gfx.hpp:134:38: error: expected primary-expression before ‘x’
void draw_combine_image(DC& dc, UInt x, UInt y, const Image& img, ImageCombine combine);
^
./src/gfx/gfx.hpp:134:46: error: expected primary-expression before ‘y’
void draw_combine_image(DC& dc, UInt x, UInt y, const Image& img, ImageCombine combine);
^
./src/gfx/gfx.hpp:134:49: error: expected primary-expression before ‘const’
void draw_combine_image(DC& dc, UInt x, UInt y, const Image& img, ImageCombine combine);
^
./src/gfx/gfx.hpp:134:80: error: expected primary-expression before ‘combine’
void draw_combine_image(DC& dc, UInt x, UInt y, const Image& img, ImageCombine combine);
^
./src/gfx/gfx.hpp:139:16: error: variable or field ‘set_alpha’ declared void
void set_alpha(Image& img, const Image& img_alpha);
^
./src/gfx/gfx.hpp:139:16: error: ‘Image’ was not declared in this scope
./src/gfx/gfx.hpp:139:23: error: ‘img’ was not declared in this scope
void set_alpha(Image& img, const Image& img_alpha);
^
./src/gfx/gfx.hpp:139:28: error: expected primary-expression before ‘const’
void set_alpha(Image& img, const Image& img_alpha);
^
./src/gfx/gfx.hpp:141:16: error: variable or field ‘set_alpha’ declared void
void set_alpha(Image& img, Byte* alphas, const wxSize& alphas_size);
^
./src/gfx/gfx.hpp:141:16: error: ‘Image’ was not declared in this scope
./src/gfx/gfx.hpp:141:23: error: ‘img’ was not declared in this scope
void set_alpha(Image& img, Byte* alphas, const wxSize& alphas_size);
^
./src/gfx/gfx.hpp:141:32: error: expected primary-expression before ‘*’ token
void set_alpha(Image& img, Byte* alphas, const wxSize& alphas_size);
^
./src/gfx/gfx.hpp:141:34: error: ‘alphas’ was not declared in this scope
void set_alpha(Image& img, Byte* alphas, const wxSize& alphas_size);
^
./src/gfx/gfx.hpp:141:42: error: expected primary-expression before ‘const’
void set_alpha(Image& img, Byte* alphas, const wxSize& alphas_size);
^
./src/gfx/gfx.hpp:143:16: error: variable or field ‘set_alpha’ declared void
void set_alpha(Image& img, double alpha);
^
./src/gfx/gfx.hpp:143:16: error: ‘Image’ was not declared in this scope
./src/gfx/gfx.hpp:143:23: error: ‘img’ was not declared in this scope
void set_alpha(Image& img, double alpha);
^
./src/gfx/gfx.hpp:143:28: error: expected primary-expression before ‘double’
void set_alpha(Image& img, double alpha);
^
./src/gfx/gfx.hpp:151:18: error: ‘Image’ does not name a type
AlphaMask(const Image& mask);
^
./src/gfx/gfx.hpp:151:25: error: ISO C++ forbids declaration of ‘mask’ with no type [-fpermissive]
AlphaMask(const Image& mask);
^
./src/gfx/gfx.hpp:155:18: error: ‘Image’ does not name a type
void load(const Image& image);
^
./src/gfx/gfx.hpp:155:25: error: ISO C++ forbids declaration of ‘image’ with no type [-fpermissive]
void load(const Image& image);
^
./src/gfx/gfx.hpp:160:16: error: ‘Image’ has not been declared
void setAlpha(Image& i) const;
^
./src/gfx/gfx.hpp:162:16: error: ‘Bitmap’ has not been declared
void setAlpha(Bitmap& b) const;
^
./src/gfx/gfx.hpp:162:7: error: ‘void AlphaMask::setAlpha(int&) const’ cannot be overloaded
void setAlpha(Bitmap& b) const;
^
./src/gfx/gfx.hpp:160:7: error: with ‘void AlphaMask::setAlpha(int&) const’
void setAlpha(Image& i) const;
^
./src/gfx/gfx.hpp:169:25: error: ‘wxPoint’ was not declared in this scope
void convexHull(vector<wxPoint>& points) const;
^
./src/gfx/gfx.hpp:169:32: error: template argument 1 is invalid
void convexHull(vector<wxPoint>& points) const;
^
./src/gfx/gfx.hpp:169:32: error: template argument 2 is invalid
./src/gfx/gfx.hpp:172:2: error: ‘Image’ does not name a type
Image colorImage(const Color& color) const;
^
./src/gfx/gfx.hpp:181:28: error: ‘wxSize’ does not name a type
inline bool hasSize(const wxSize& compare_size) const { return size == compare_size; }
^
./src/gfx/gfx.hpp:181:36: error: ISO C++ forbids declaration of ‘compare_size’ with no type [-fpermissive]
inline bool hasSize(const wxSize& compare_size) const { return size == compare_size; }
^
./src/gfx/gfx.hpp:186:2: error: ‘wxSize’ does not name a type
wxSize size; ///< Size of the mask
^
./src/gfx/gfx.hpp: In member function ‘bool AlphaMask::hasSize(const int&) const’:
./src/gfx/gfx.hpp:181:65: error: ‘size’ was not declared in this scope
inline bool hasSize(const wxSize& compare_size) const { return size == compare_size; }
^
In file included from ./src/script/to_value.hpp:18:0,
from ./src/script/scriptable.hpp:19,
from ./src/data/game.hpp:14,
from ./src/main.cpp:12:
./src/gfx/generated_image.hpp: At global scope:
./src/gfx/generated_image.hpp:48:2: error: ‘Image’ does not name a type
Image generateConform(const Options&) const;
^
./src/gfx/generated_image.hpp:50:10: error: ‘Image’ does not name a type
virtual Image generate(const Options&) const = 0;
^
./src/gfx/generated_image.hpp:71:1: error: ‘Image’ does not name a type
Image conform_image(const Image&, const GeneratedImage::Options&);
^
./src/gfx/generated_image.hpp:92:10: error: ‘Image’ does not name a type
virtual Image generate(const Options&) const;
^
./src/gfx/generated_image.hpp:110:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:127:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:143:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:160:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:172:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:186:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:201:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:215:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:224:52: error: ‘Color’ has not been declared
inline RecolorImage(const GeneratedImageP& image, Color color)
^
./src/gfx/generated_image.hpp:227:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:230:2: error: ‘Color’ does not name a type
Color color;
^
./src/gfx/generated_image.hpp: In constructor ‘RecolorImage::RecolorImage(const GeneratedImageP&, int)’:
./src/gfx/generated_image.hpp:225:31: error: class ‘RecolorImage’ does not have any field named ‘color’
: SimpleFilterImage(image), color(color)
^
./src/gfx/generated_image.hpp: At global scope:
./src/gfx/generated_image.hpp:235:53: error: ‘Color’ has not been declared
inline RecolorImage2(const GeneratedImageP& image, Color red, Color green, Color blue, Color white)
^
./src/gfx/generated_image.hpp:235:64: error: ‘Color’ has not been declared
inline RecolorImage2(const GeneratedImageP& image, Color red, Color green, Color blue, Color white)
^
./src/gfx/generated_image.hpp:235:77: error: ‘Color’ has not been declared
inline RecolorImage2(const GeneratedImageP& image, Color red, Color green, Color blue, Color white)
^
./src/gfx/generated_image.hpp:235:89: error: ‘Color’ has not been declared
inline RecolorImage2(const GeneratedImageP& image, Color red, Color green, Color blue, Color white)
^
./src/gfx/generated_image.hpp:238:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:241:2: error: ‘Color’ does not name a type
Color red,green,blue,white;
^
./src/gfx/generated_image.hpp: In constructor ‘RecolorImage2::RecolorImage2(const GeneratedImageP&, int, int, int, int)’:
./src/gfx/generated_image.hpp:236:31: error: class ‘RecolorImage2’ does not have any field named ‘red’
: SimpleFilterImage(image), red(red), green(green), blue(blue), white(white)
^
./src/gfx/generated_image.hpp:236:41: error: class ‘RecolorImage2’ does not have any field named ‘green’
: SimpleFilterImage(image), red(red), green(green), blue(blue), white(white)
^
./src/gfx/generated_image.hpp:236:55: error: class ‘RecolorImage2’ does not have any field named ‘blue’
: SimpleFilterImage(image), red(red), green(green), blue(blue), white(white)
^
./src/gfx/generated_image.hpp:236:67: error: class ‘RecolorImage2’ does not have any field named ‘white’
: SimpleFilterImage(image), red(red), green(green), blue(blue), white(white)
^
./src/gfx/generated_image.hpp: At global scope:
./src/gfx/generated_image.hpp:252:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:262:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:272:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:286:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:300:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:312:137: error: ‘Color’ has not been declared
inline DropShadowImage(const GeneratedImageP& image, double offset_x, double offset_y, double shadow_alpha, double shadow_blur_radius, Color shadow_color)
^
./src/gfx/generated_image.hpp:316:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:322:2: error: ‘Color’ does not name a type
Color shadow_color;
^
./src/gfx/generated_image.hpp: In constructor ‘DropShadowImage::DropShadowImage(const GeneratedImageP&, double, double, double, double, int)’:
./src/gfx/generated_image.hpp:314:73: error: class ‘DropShadowImage’ does not have any field named ‘shadow_color’
, shadow_alpha(shadow_alpha), shadow_blur_radius(shadow_blur_radius), shadow_color(shadow_color)
^
./src/gfx/generated_image.hpp: At global scope:
./src/gfx/generated_image.hpp:333:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:347:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:360:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
./src/gfx/generated_image.hpp:384:10: error: ‘Image’ does not name a type
virtual Image generate(const Options& opt) const;
^
In file included from ./src/script/scriptable.hpp:19:0,
from ./src/data/game.hpp:14,
from ./src/main.cpp:12:
./src/script/to_value.hpp:458:31: error: ‘ScriptValueP to_script’ redeclared as different kind of symbol
ScriptValueP to_script(Color v);
^
./src/script/to_value.hpp:457:21: error: previous declaration of ‘ScriptValueP to_script(const String&)’
ScriptValueP to_script(const String& v);
^
./src/script/to_value.hpp:458:31: error: ‘Color’ was not declared in this scope
ScriptValueP to_script(Color v);
^
./src/script/to_value.hpp:489:20: error: ‘Color’ does not name a type
template <> inline Color from_script<Color> (const ScriptValueP& value) { return value->toColor(); }
^
In file included from ./src/data/game.hpp:14:0,
from ./src/main.cpp:12:
./src/script/scriptable.hpp:31:37: error: ‘Color’ has not been declared
void store(const ScriptValueP& val, Color& var);
^
./src/script/scriptable.hpp:34:49: error: ‘Color’ was not declared in this scope
void store(const ScriptValueP& val, Defaultable<Color>& var);
^
./src/script/scriptable.hpp:34:54: error: template argument 1 is invalid
void store(const ScriptValueP& val, Defaultable<Color>& var);
^
In file included from ./src/data/field.hpp:16:0,
from ./src/data/set.hpp:16,
from ./src/main.cpp:13:
./src/util/rotation.hpp:87:2: error: ‘wxRegion’ does not name a type
wxRegion trRectToRegion(const RealRect& rect) const;
^
./src/util/rotation.hpp:155:14: error: expected ‘)’ before ‘&’ token
RotatedDC(DC& dc, Radians angle, const RealRect& rect, double zoom, RenderQuality quality, RotationFlags flags = ROTATION_NORMAL);
^
./src/util/rotation.hpp:156:14: error: expected ‘)’ before ‘&’ token
RotatedDC(DC& dc, const Rotation& rotation, RenderQuality quality);
^
./src/util/rotation.hpp:166:24: error: ‘Bitmap’ does not name a type
void DrawBitmap(const Bitmap& bitmap, const RealPoint& pos);
^
./src/util/rotation.hpp:166:32: error: ISO C++ forbids declaration of ‘bitmap’ with no type [-fpermissive]
void DrawBitmap(const Bitmap& bitmap, const RealPoint& pos);
^
./src/util/rotation.hpp:168:24: error: ‘Image’ does not name a type
void DrawImage (const Image& image, const RealPoint& pos, ImageCombine combine = COMBINE_DEFAULT);
^
./src/util/rotation.hpp:168:31: error: ISO C++ forbids declaration of ‘image’ with no type [-fpermissive]
void DrawImage (const Image& image, const RealPoint& pos, ImageCombine combine = COMBINE_DEFAULT);
^
./src/util/rotation.hpp:171:34: error: ‘Bitmap’ does not name a type
void DrawPreRotatedBitmap(const Bitmap& bitmap, const RealRect& rect);
^
./src/util/rotation.hpp:171:42: error: ISO C++ forbids declaration of ‘bitmap’ with no type [-fpermissive]
void DrawPreRotatedBitmap(const Bitmap& bitmap, const RealRect& rect);
^
./src/util/rotation.hpp:173:33: error: ‘Image’ does not name a type
void DrawPreRotatedImage(const Image& image, const RealRect& rect, ImageCombine combine = COMBINE_DEFAULT);
^
./src/util/rotation.hpp:173:40: error: ISO C++ forbids declaration of ‘image’ with no type [-fpermissive]
void DrawPreRotatedImage(const Image& image, const RealRect& rect, ImageCombine combine = COMBINE_DEFAULT);
^
./src/util/rotation.hpp:190:20: error: ‘wxPen’ does not name a type
void SetPen(const wxPen&);
^
./src/util/rotation.hpp:190:25: error: ISO C++ forbids declaration of ‘parameter’ with no type [-fpermissive]
void SetPen(const wxPen&);
^
./src/util/rotation.hpp:191:22: error: ‘wxBrush’ does not name a type
void SetBrush(const wxBrush&);
^
./src/util/rotation.hpp:191:29: error: ISO C++ forbids declaration of ‘parameter’ with no type [-fpermissive]
void SetBrush(const wxBrush&);
^
./src/util/rotation.hpp:192:31: error: ‘Color’ does not name a type
void SetTextForeground(const Color&);
^
./src/util/rotation.hpp:192:36: error: ISO C++ forbids declaration of ‘parameter’ with no type [-fpermissive]
void SetTextForeground(const Color&);
^
./src/util/rotation.hpp:193:26: error: ‘wxRasterOperationMode’ has not been declared
void SetLogicalFunction(wxRasterOperationMode function);
^
./src/util/rotation.hpp:195:21: error: ‘wxFont’ does not name a type
void SetFont(const wxFont& font);
^
./src/util/rotation.hpp:195:29: error: ISO C++ forbids declaration of ‘font’ with no type [-fpermissive]
void SetFont(const wxFont& font);
^
./src/util/rotation.hpp:211:2: error: ‘Bitmap’ does not name a type
Bitmap GetBackground(const RealRect& r);
^
./src/util/rotation.hpp:213:9: error: ‘wxDC’ does not name a type
inline wxDC& getDC() { return dc; }
^
./src/util/rotation.hpp:216:2: error: ‘wxDC’ does not name a type
wxDC& dc; ///< The actual dc
^
In file included from ./src/data/field.hpp:19:0,
from ./src/data/set.hpp:16,
from ./src/main.cpp:13:
./src/script/image.hpp:41:2: error: ‘Image’ does not name a type
Image generate(const GeneratedImage::Options& options) const;
^
./src/script/image.hpp:93:45: error: ‘wxBitmap’ has not been declared
ImageCombine* combine, wxBitmap* bitmap, wxImage* image, RealSize* size);
^
./src/script/image.hpp:93:63: error: ‘wxImage’ has not been declared
ImageCombine* combine, wxBitmap* bitmap, wxImage* image, RealSize* size);
^
./src/script/image.hpp:102:2: error: ‘Image’ does not name a type
Image cached_i; ///< The cached image
^
./src/script/image.hpp:103:2: error: ‘Bitmap’ does not name a type
Bitmap cached_b; ///< *or* the cached bitmap
^
In file included from ./src/main.cpp:16:0:
./src/data/installer.hpp:69:2: error: ‘Image’ does not name a type
Image icon; ///< Icon for the package
^
In file included from ./src/main.cpp:17:0:
./src/data/format/formats.hpp:102:1: error: ‘Bitmap’ does not name a type
Bitmap export_bitmap(const SetP& set, const CardP& card);
^
In file included from ./src/cli/cli_main.hpp:14:0,
from ./src/main.cpp:18:
./src/data/export_template.hpp:61:13: error: ‘wxSize’ was not declared in this scope
map<String,wxSize> exported_images; ///< Images (from symbol font) already exported, and their size
^
./src/data/export_template.hpp:61:19: error: template argument 2 is invalid
map<String,wxSize> exported_images; ///< Images (from symbol font) already exported, and their size
^
./src/data/export_template.hpp:61:19: error: template argument 4 is invalid
In file included from ./src/gui/welcome_window.hpp:13:0,
from ./src/main.cpp:20:
./src/gui/about_window.hpp:17:37: error: expected class-name before ‘{’ token
class AboutWindow : public wxDialog {
^
./src/gui/about_window.hpp:25:2: error: ‘Bitmap’ does not name a type
Bitmap logo;
^
./src/gui/about_window.hpp:31:12: error: ‘DC’ has not been declared
void draw(DC& dc);
^
./src/gui/about_window.hpp:37:42: error: expected class-name before ‘{’ token
class HoverButtonBase : public wxControl {
^
./src/gui/about_window.hpp:66:20: error: ‘DC’ has not been declared
virtual void draw(DC& dc) = 0;
^
./src/gui/about_window.hpp:80:64: error: ‘Color’ does not name a type
HoverButton(Window* parent, int id, const String& name, const Color& background = Color(240,247,255), bool accepts_focus = true);
^
./src/gui/about_window.hpp:80:101: error: ISO C++ forbids declaration of ‘background’ with no type [-fpermissive]
HoverButton(Window* parent, int id, const String& name, const Color& background = Color(240,247,255), bool accepts_focus = true);
^
In file included from ./src/gui/welcome_window.hpp:13:0,
from ./src/main.cpp:20:
./src/gui/about_window.hpp:87:2: error: ‘Bitmap’ does not name a type
Bitmap bg_normal, bg_hover, bg_focus, bg_down; ///< Bitmaps for the states of the button
^
./src/gui/about_window.hpp:88:2: error: ‘Color’ does not name a type
Color background;
^
./src/gui/about_window.hpp:90:10: error: ‘wxSize’ does not name a type
virtual wxSize DoGetBestSize() const;
^
./src/gui/about_window.hpp:92:8: error: ‘Bitmap’ does not name a type
const Bitmap* last_drawn;
^
./src/gui/about_window.hpp:93:8: error: ‘Bitmap’ does not name a type
const Bitmap* toDraw() const;
^
./src/gui/about_window.hpp:97:20: error: ‘DC’ has not been declared
virtual void draw(DC& dc);
^
In file included from ./src/gui/welcome_window.hpp:13:0,
from ./src/main.cpp:20:
./src/gui/about_window.hpp:80:101: error: ‘Color’ was not declared in this scope
HoverButton(Window* parent, int id, const String& name, const Color& background = Color(240,247,255), bool accepts_focus = true);
^
In file included from ./src/main.cpp:20:0:
./src/gui/welcome_window.hpp:27:30: error: invalid use of incomplete type ‘class wxFrame’
class WelcomeWindow : public wxFrame {
^
In file included from /usr/include/wx-3.0/wx/wx.h:26:0,
from ./src/util/prec.hpp:29,
from ./src/main.cpp:9:
/usr/include/wx-3.0/wx/utils.h:54:28: error: forward declaration of ‘class wxFrame’
class WXDLLIMPEXP_FWD_CORE wxFrame;
^
In file included from ./src/main.cpp:20:0:
./src/gui/welcome_window.hpp:35:2: error: ‘Bitmap’ does not name a type
Bitmap logo;
^
./src/gui/welcome_window.hpp:41:12: error: ‘DC’ has not been declared
void draw(DC& dc);
^
./src/gui/welcome_window.hpp:59:47: error: ‘wxImage’ does not name a type
HoverButtonExt(Window* parent, int id, const wxImage& icon_name, const String& label, const String& sub_label);
^
./src/gui/welcome_window.hpp:59:56: error: ISO C++ forbids declaration of ‘icon_name’ with no type [-fpermissive]
HoverButtonExt(Window* parent, int id, const wxImage& icon_name, const String& label, const String& sub_label);
^
./src/gui/welcome_window.hpp:62:2: error: ‘Bitmap’ does not name a type
Bitmap icon;
^
./src/gui/welcome_window.hpp:64:2: error: ‘wxFont’ does not name a type
wxFont font_large, font_small;
^
./src/gui/welcome_window.hpp:67:20: error: ‘DC’ has not been declared
virtual void draw(DC& dc);
^
In file included from ./src/main.cpp:22:0:
./src/gui/packages_window.hpp:21:40: error: expected class-name before ‘{’ token
class PackagesWindow : public wxDialog {
^
In file included from ./src/gui/set/window.hpp:15:0,
from ./src/main.cpp:23:
./src/gui/card_select_window.hpp:43:42: error: expected class-name before ‘{’ token
class ExportWindowBase : public wxDialog {
^
./src/gui/card_select_window.hpp:48:2: error: ‘wxSizer’ does not name a type
wxSizer* Create();
^
./src/gui/card_select_window.hpp:62:2: error: ‘wxStaticText’ does not name a type
wxStaticText* card_count;
^
./src/gui/card_select_window.hpp:63:2: error: ‘wxButton’ does not name a type
wxButton* select_cards;
^
./src/gui/card_select_window.hpp:46:98: error: ‘wxDEFAULT_DIALOG_STYLE’ was not declared in this scope
const SetP& set, const ExportCardSelectionChoices& cards_choices, long style = wxDEFAULT_DIALOG_STYLE);
^
./src/gui/card_select_window.hpp:75:42: error: expected class-name before ‘{’ token
class CardSelectWindow : public wxDialog {
^
./src/gui/card_select_window.hpp:91:2: error: ‘wxButton’ does not name a type
wxButton* sel_all, *sel_none;
^
In file included from ./src/main.cpp:23:0:
./src/gui/set/window.hpp:27:42: error: invalid use of incomplete type ‘class wxFrame’
class SetWindow : public wxFrame, public SetView {
^
In file included from /usr/include/wx-3.0/wx/wx.h:26:0,
from ./src/util/prec.hpp:29,
from ./src/main.cpp:9:
/usr/include/wx-3.0/wx/utils.h:54:28: error: forward declaration of ‘class wxFrame’
class WXDLLIMPEXP_FWD_CORE wxFrame;
^
In file included from ./src/main.cpp:23:0:
./src/gui/set/window.hpp:34:43: error: ‘wxBitmap’ has not been declared
void setPanelIcon(SetWindowPanel* panel, wxBitmap const& icon);
^
./src/gui/set/window.hpp:52:2: error: ‘wxDialog’ does not name a type
wxDialog* find_dialog;
^
./src/gui/set/window.hpp:53:2: error: ‘wxFindReplaceData’ does not name a type
wxFindReplaceData find_data;
^
./src/gui/set/window.hpp:60:38: error: ‘wxToolBar’ has not been declared
void addPanel(IconMenu* windowMenu, wxToolBar* tabBar, SetWindowPanel* panel, UInt pos, const String& image_name, const String& name);
^
In file included from ./src/main.cpp:24:0:
./src/gui/symbol/window.hpp:23:29: error: invalid use of incomplete type ‘class wxFrame’
class SymbolWindow : public wxFrame {
^
In file included from /usr/include/wx-3.0/wx/wx.h:26:0,
from ./src/util/prec.hpp:29,
from ./src/main.cpp:9:
/usr/include/wx-3.0/wx/utils.h:54:28: error: forward declaration of ‘class wxFrame’
class WXDLLIMPEXP_FWD_CORE wxFrame;
^
In file included from ./src/main.cpp:25:0:
./src/gui/thumbnail_thread.hpp:31:10: error: ‘Image’ does not name a type
virtual Image generate() = 0;
^
./src/gui/thumbnail_thread.hpp:33:27: error: ‘Image’ does not name a type
virtual void store(const Image&) = 0;
^
./src/gui/thumbnail_thread.hpp:33:32: error: ISO C++ forbids declaration of ‘parameter’ with no type [-fpermissive]
virtual void store(const Image&) = 0;
^
./src/gui/thumbnail_thread.hpp:74:32: error: ‘Image’ was not declared in this scope
vector<pair<ThumbnailRequestP,Image> > closed_requests; ///< Requests for which work is completed
^
./src/gui/thumbnail_thread.hpp:74:37: error: template argument 2 is invalid
vector<pair<ThumbnailRequestP,Image> > closed_requests; ///< Requests for which work is completed
^
./src/gui/thumbnail_thread.hpp:74:39: error: template argument 1 is invalid
vector<pair<ThumbnailRequestP,Image> > closed_requests; ///< Requests for which work is completed
^
./src/gui/thumbnail_thread.hpp:74:39: error: template argument 2 is invalid
./src/main.cpp: In member function ‘virtual int MSE::OnRun()’:
./src/main.cpp:91:26: error: ‘wxInitAllImageHandlers’ was not declared in this scope
wxInitAllImageHandlers();
^
./src/main.cpp:114:53: error: cannot convert ‘SymbolWindow*’ to ‘Window* {aka wxWindow*}’ in initialization
Window* wnd = new SymbolWindow(nullptr, args[0]);
^
./src/main.cpp:115:9: error: invalid use of incomplete type ‘Window {aka class wxWindow}’
wnd->Show();
^
In file included from /usr/include/wx-3.0/wx/wx.h:26:0,
from ./src/util/prec.hpp:29,
from ./src/main.cpp:9:
/usr/include/wx-3.0/wx/utils.h:55:28: error: forward declaration of ‘Window {aka class wxWindow}’
class WXDLLIMPEXP_FWD_CORE wxWindow;
^
./src/main.cpp:119:62: error: cannot convert ‘SetWindow*’ to ‘Window* {aka wxWindow*}’ in initialization
Window* wnd = new SetWindow(nullptr, import_set(args[0]));
^
./src/main.cpp:120:9: error: invalid use of incomplete type ‘Window {aka class wxWindow}’
wnd->Show();
^
In file included from /usr/include/wx-3.0/wx/wx.h:26:0,
from ./src/util/prec.hpp:29,
from ./src/main.cpp:9:
/usr/include/wx-3.0/wx/utils.h:55:28: error: forward declaration of ‘Window {aka class wxWindow}’
class WXDLLIMPEXP_FWD_CORE wxWindow;
^
./src/main.cpp:132:10: error: ‘class PackagesWindow’ has no member named ‘ShowModal’
wnd.ShowModal();
^
./src/main.cpp:135:44: error: cannot convert ‘SymbolWindow*’ to ‘Window* {aka wxWindow*}’ in initialization
Window* wnd = new SymbolWindow(nullptr);
^
./src/main.cpp:136:9: error: invalid use of incomplete type ‘Window {aka class wxWindow}’
wnd->Show();
^
In file included from /usr/include/wx-3.0/wx/wx.h:26:0,
from ./src/util/prec.hpp:29,
from ./src/main.cpp:9:
/usr/include/wx-3.0/wx/utils.h:55:28: error: forward declaration of ‘Window {aka class wxWindow}’
class WXDLLIMPEXP_FWD_CORE wxWindow;
^
./src/main.cpp:287:26: error: ‘class WelcomeWindow’ has no member named ‘Show’
(new WelcomeWindow())->Show();
^
./src/main.cpp: In member function ‘virtual void MSE::HandleEvent(wxEvtHandler*, wxEventFunction, wxEvent&) const’:
./src/main.cpp:317:6: error: ‘wxNotifyEvent’ was not declared in this scope
if (wxNotifyEvent* nev = dynamic_cast<wxNotifyEvent*>(&event)) {
^
./src/main.cpp:317:21: error: ‘nev’ was not declared in this scope
if (wxNotifyEvent* nev = dynamic_cast<wxNotifyEvent*>(&event)) {
^
./src/main.cpp:317:40: error: expected type-specifier before ‘wxNotifyEvent’
if (wxNotifyEvent* nev = dynamic_cast<wxNotifyEvent*>(&event)) {
^
./src/main.cpp:317:40: error: expected ‘>’ before ‘wxNotifyEvent’
./src/main.cpp:317:40: error: expected ‘(’ before ‘wxNotifyEvent’
./src/main.cpp:317:54: error: expected primary-expression before ‘>’ token
if (wxNotifyEvent* nev = dynamic_cast<wxNotifyEvent*>(&event)) {
^
./src/main.cpp:317:65: error: expected ‘)’ before ‘{’ token
if (wxNotifyEvent* nev = dynamic_cast<wxNotifyEvent*>(&event)) {
^
./src/main.cpp:321:1: error: expected primary-expression before ‘}’ token
}
^
./src/main.cpp:321:1: error: expected ‘;’ before ‘}’ token
In file included from /usr/include/boost/functional/hash/hash.hpp:540:0,
from /usr/include/boost/functional/hash.hpp:6,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/extensions.hpp: In instantiation of ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’:
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: required from ‘boost::re_detail::named_subexpressions::range_type boost::re_detail::named_subexpressions::equal_range(const charT*, const charT*) const [with charT = wxUniChar; boost::re_detail::named_subexpressions::range_type = std::pair<__gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> >, __gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> > >]’
/usr/include/boost/regex/v4/match_results.hpp:261:13: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/extensions.hpp:269:34: error: no matching function for call to ‘hash_value(const wxUniChar&)’
return hash_value(val);
^
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: candidates are:
In file included from /usr/include/boost/shared_ptr.hpp:17:0,
from ./src/util/smart_ptr.hpp:26,
from ./src/util/prec.hpp:97,
from ./src/main.cpp:9:
/usr/include/boost/smart_ptr/shared_ptr.hpp:1026:33: note: template<class T> std::size_t boost::hash_value(const boost::shared_ptr<X>&)
template< class T > std::size_t hash_value( boost::shared_ptr<T> const & p ) BOOST_NOEXCEPT
^
/usr/include/boost/smart_ptr/shared_ptr.hpp:1026:33: note: template argument deduction/substitution failed:
In file included from /usr/include/boost/functional/hash/hash.hpp:540:0,
from /usr/include/boost/functional/hash.hpp:6,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const boost::shared_ptr<X>’
return hash_value(val);
^
In file included from /usr/include/boost/intrusive_ptr.hpp:16:0,
from ./src/util/smart_ptr.hpp:28,
from ./src/util/prec.hpp:97,
from ./src/main.cpp:9:
/usr/include/boost/smart_ptr/intrusive_ptr.hpp:317:33: note: template<class T> std::size_t boost::hash_value(const boost::intrusive_ptr<T>&)
template< class T > std::size_t hash_value( boost::intrusive_ptr<T> const & p )
^
/usr/include/boost/smart_ptr/intrusive_ptr.hpp:317:33: note: template argument deduction/substitution failed:
In file included from /usr/include/boost/functional/hash/hash.hpp:540:0,
from /usr/include/boost/functional/hash.hpp:6,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const boost::intrusive_ptr<T>’
return hash_value(val);
^
In file included from /usr/include/boost/functional/hash.hpp:6:0,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/hash.hpp:194:57: note: template<class T> typename boost::hash_detail::basic_numbers<T>::type boost::hash_value(T)
typename boost::hash_detail::basic_numbers<T>::type hash_value(T v)
^
/usr/include/boost/functional/hash/hash.hpp:194:57: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/hash.hpp: In substitution of ‘template<class T> typename boost::hash_detail::basic_numbers<T>::type boost::hash_value(T) [with T = wxUniChar]’:
/usr/include/boost/functional/hash/extensions.hpp:269:34: required from ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/hash.hpp:194:57: error: no type named ‘type’ in ‘struct boost::hash_detail::basic_numbers<wxUniChar>’
/usr/include/boost/functional/hash/extensions.hpp: In instantiation of ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’:
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: required from ‘boost::re_detail::named_subexpressions::range_type boost::re_detail::named_subexpressions::equal_range(const charT*, const charT*) const [with charT = wxUniChar; boost::re_detail::named_subexpressions::range_type = std::pair<__gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> >, __gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> > >]’
/usr/include/boost/regex/v4/match_results.hpp:261:13: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/hash.hpp:200:56: note: template<class T> typename boost::hash_detail::long_numbers<T>::type boost::hash_value(T)
typename boost::hash_detail::long_numbers<T>::type hash_value(T v)
^
/usr/include/boost/functional/hash/hash.hpp:200:56: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/hash.hpp: In substitution of ‘template<class T> typename boost::hash_detail::long_numbers<T>::type boost::hash_value(T) [with T = wxUniChar]’:
/usr/include/boost/functional/hash/extensions.hpp:269:34: required from ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/hash.hpp:200:56: error: no type named ‘type’ in ‘struct boost::hash_detail::long_numbers<wxUniChar>’
/usr/include/boost/functional/hash/extensions.hpp: In instantiation of ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’:
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: required from ‘boost::re_detail::named_subexpressions::range_type boost::re_detail::named_subexpressions::equal_range(const charT*, const charT*) const [with charT = wxUniChar; boost::re_detail::named_subexpressions::range_type = std::pair<__gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> >, __gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> > >]’
/usr/include/boost/regex/v4/match_results.hpp:261:13: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/hash.hpp:206:57: note: template<class T> typename boost::hash_detail::ulong_numbers<T>::type boost::hash_value(T)
typename boost::hash_detail::ulong_numbers<T>::type hash_value(T v)
^
/usr/include/boost/functional/hash/hash.hpp:206:57: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/hash.hpp: In substitution of ‘template<class T> typename boost::hash_detail::ulong_numbers<T>::type boost::hash_value(T) [with T = wxUniChar]’:
/usr/include/boost/functional/hash/extensions.hpp:269:34: required from ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/hash.hpp:206:57: error: no type named ‘type’ in ‘struct boost::hash_detail::ulong_numbers<wxUniChar>’
/usr/include/boost/functional/hash/extensions.hpp: In instantiation of ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’:
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: required from ‘boost::re_detail::named_subexpressions::range_type boost::re_detail::named_subexpressions::equal_range(const charT*, const charT*) const [with charT = wxUniChar; boost::re_detail::named_subexpressions::range_type = std::pair<__gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> >, __gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> > >]’
/usr/include/boost/regex/v4/match_results.hpp:261:13: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/hash.hpp:213:9: note: template<class T> typename boost::enable_if<boost::is_enum<T>, long unsigned int>::type boost::hash_value(T)
hash_value(T v)
^
/usr/include/boost/functional/hash/hash.hpp:213:9: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/hash.hpp: In substitution of ‘template<class T> typename boost::enable_if<boost::is_enum<T>, long unsigned int>::type boost::hash_value(T) [with T = wxUniChar]’:
/usr/include/boost/functional/hash/extensions.hpp:269:34: required from ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/hash.hpp:213:9: error: no type named ‘type’ in ‘struct boost::enable_if<boost::is_enum<wxUniChar>, long unsigned int>’
/usr/include/boost/functional/hash/extensions.hpp: In instantiation of ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’:
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: required from ‘boost::re_detail::named_subexpressions::range_type boost::re_detail::named_subexpressions::equal_range(const charT*, const charT*) const [with charT = wxUniChar; boost::re_detail::named_subexpressions::range_type = std::pair<__gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> >, __gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> > >]’
/usr/include/boost/regex/v4/match_results.hpp:261:13: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/hash.hpp:220:36: note: template<class T> std::size_t boost::hash_value(T* const&)
template <class T> std::size_t hash_value(T* const& v)
^
/usr/include/boost/functional/hash/hash.hpp:220:36: note: template argument deduction/substitution failed:
In file included from /usr/include/boost/functional/hash/hash.hpp:540:0,
from /usr/include/boost/functional/hash.hpp:6,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: mismatched types ‘T* const’ and ‘const wxUniChar’
return hash_value(val);
^
In file included from /usr/include/boost/functional/hash.hpp:6:0,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/hash.hpp:313:24: note: template<class T, unsigned int N> std::size_t boost::hash_value(const T (&)[N])
inline std::size_t hash_value(const T (&x)[N])
^
/usr/include/boost/functional/hash/hash.hpp:313:24: note: template argument deduction/substitution failed:
In file included from /usr/include/boost/functional/hash/hash.hpp:540:0,
from /usr/include/boost/functional/hash.hpp:6,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: mismatched types ‘const T [N]’ and ‘const wxUniChar’
return hash_value(val);
^
In file included from /usr/include/boost/functional/hash.hpp:6:0,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/hash.hpp:319:24: note: template<class T, unsigned int N> std::size_t boost::hash_value(T (&)[N])
inline std::size_t hash_value(T (&x)[N])
^
/usr/include/boost/functional/hash/hash.hpp:319:24: note: template argument deduction/substitution failed:
In file included from /usr/include/boost/functional/hash/hash.hpp:540:0,
from /usr/include/boost/functional/hash.hpp:6,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: mismatched types ‘T [N]’ and ‘const wxUniChar’
return hash_value(val);
^
In file included from /usr/include/boost/functional/hash.hpp:6:0,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/hash.hpp:326:24: note: template<class Ch, class A> std::size_t boost::hash_value(const std::basic_string<Ch, std::char_traits<_CharT>, A>&)
inline std::size_t hash_value(
^
/usr/include/boost/functional/hash/hash.hpp:326:24: note: template argument deduction/substitution failed:
In file included from /usr/include/boost/functional/hash/hash.hpp:540:0,
from /usr/include/boost/functional/hash.hpp:6,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const std::basic_string<Ch, std::char_traits<_CharT>, A>’
return hash_value(val);
^
In file included from /usr/include/boost/functional/hash.hpp:6:0,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/hash.hpp:333:57: note: template<class T> typename boost::hash_detail::float_numbers<T>::type boost::hash_value(T)
typename boost::hash_detail::float_numbers<T>::type hash_value(T v)
^
/usr/include/boost/functional/hash/hash.hpp:333:57: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/hash.hpp: In substitution of ‘template<class T> typename boost::hash_detail::float_numbers<T>::type boost::hash_value(T) [with T = wxUniChar]’:
/usr/include/boost/functional/hash/extensions.hpp:269:34: required from ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: [ skipping 5 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/hash.hpp:333:57: error: no type named ‘type’ in ‘struct boost::hash_detail::float_numbers<wxUniChar>’
In file included from /usr/include/boost/functional/hash/hash.hpp:540:0,
from /usr/include/boost/functional/hash.hpp:6,
from /usr/include/boost/regex/v4/basic_regex.hpp:23,
from /usr/include/boost/regex/v4/regex.hpp:67,
from /usr/include/boost/regex.hpp:31,
from ./src/util/regex.hpp:28,
from ./src/util/prec.hpp:102,
from ./src/main.cpp:9:
/usr/include/boost/functional/hash/extensions.hpp: In instantiation of ‘std::size_t boost::hash<T>::operator()(const T&) const [with T = wxUniChar; std::size_t = long unsigned int]’:
/usr/include/boost/functional/hash/hash.hpp:256:25: required from ‘void boost::hash_combine(std::size_t&, const T&) [with T = wxUniChar; std::size_t = long unsigned int]’
/usr/include/boost/functional/hash/hash.hpp:270:38: required from ‘std::size_t boost::hash_range(It, It) [with It = const wxUniChar*; std::size_t = long unsigned int]’
/usr/include/boost/regex/v4/basic_regex.hpp:70:42: required from ‘int boost::re_detail::hash_value_from_capture_name(Iterator, Iterator) [with Iterator = const wxUniChar*]’
/usr/include/boost/regex/v4/basic_regex.hpp:85:50: required from ‘boost::re_detail::named_subexpressions::name::name(const charT*, const charT*, int) [with charT = wxUniChar]’
/usr/include/boost/regex/v4/basic_regex.hpp:133:21: required from ‘boost::re_detail::named_subexpressions::range_type boost::re_detail::named_subexpressions::equal_range(const charT*, const charT*) const [with charT = wxUniChar; boost::re_detail::named_subexpressions::range_type = std::pair<__gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> >, __gnu_cxx::__normal_iterator<const boost::re_detail::named_subexpressions::name*, std::vector<boost::re_detail::named_subexpressions::name> > >]’
/usr/include/boost/regex/v4/match_results.hpp:261:13: [ skipping 4 instantiation contexts, use -ftemplate-backtrace-limit=0 to disable ]
/usr/include/boost/regex/v4/regex_format.hpp:274:32: required from ‘void boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format_all() [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >]’
/usr/include/boost/regex/v4/regex_format.hpp:213:15: required from ‘OutputIterator boost::re_detail::basic_regex_formatter<OutputIterator, Results, traits, ForwardIter>::format(ForwardIter, ForwardIter, boost::regex_constants::match_flag_type) [with OutputIterator = std::insert_iterator<wxString>; Results = boost::match_results<wxString::const_iterator>; traits = boost::re_detail::trivial_format_traits<wxUniChar>; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:845:33: required from ‘OutputIterator boost::re_detail::regex_format_imp(OutputIterator, const boost::match_results<Iterator, Alloc>&, ForwardIter, ForwardIter, boost::regex_constants::match_flag_type, const traits&) [with OutputIterator = std::insert_iterator<wxString>; Iterator = wxString::const_iterator; Alloc = std::allocator<boost::sub_match<wxString::const_iterator> >; ForwardIter = __gnu_cxx::__normal_iterator<const wchar_t*, std::basic_string<wchar_t> >; traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/regex_format.hpp:1088:78: required from ‘OutputIter boost::re_detail::format_functor_container<Container, Match, Traits>::operator()(const Match&, OutputIter, boost::regex_constants::match_flag_type, const Traits&) [with OutputIter = std::insert_iterator<wxString>; Container = std::basic_string<wchar_t>; Match = boost::match_results<wxString::const_iterator>; Traits = boost::re_detail::trivial_format_traits<wxUniChar>; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
/usr/include/boost/regex/v4/match_results.hpp:345:36: required from ‘OutputIterator boost::match_results<BidiIterator, Allocator>::format(OutputIterator, Functor, boost::regex_constants::match_flag_type) const [with OutputIterator = std::insert_iterator<wxString>; Functor = std::basic_string<wchar_t>; BidiIterator = wxString::const_iterator; Allocator = std::allocator<boost::sub_match<wxString::const_iterator> >; boost::regex_constants::match_flag_type = boost::regex_constants::_match_flags]’
./src/util/regex.hpp:52:75: required from here
/usr/include/boost/functional/hash/extensions.hpp:70:17: note: template<class A, class B> std::size_t boost::hash_value(const std::pair<_T1, _T2>&)
std::size_t hash_value(std::pair<A, B> const& v)
^
/usr/include/boost/functional/hash/extensions.hpp:70:17: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const std::pair<_T1, _T2>’
return hash_value(val);
^
/usr/include/boost/functional/hash/extensions.hpp:79:17: note: template<class T, class A> std::size_t boost::hash_value(const std::vector<_Tp, _Alloc>&)
std::size_t hash_value(std::vector<T, A> const& v)
^
/usr/include/boost/functional/hash/extensions.hpp:79:17: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const std::vector<_Tp, _Alloc>’
return hash_value(val);
^
/usr/include/boost/functional/hash/extensions.hpp:85:17: note: template<class T, class A> std::size_t boost::hash_value(const std::list<_Tp, _Alloc>&)
std::size_t hash_value(std::list<T, A> const& v)
^
/usr/include/boost/functional/hash/extensions.hpp:85:17: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const std::list<_Tp, _Alloc>’
return hash_value(val);
^
/usr/include/boost/functional/hash/extensions.hpp:91:17: note: template<class T, class A> std::size_t boost::hash_value(const std::deque<_Tp, _Alloc>&)
std::size_t hash_value(std::deque<T, A> const& v)
^
/usr/include/boost/functional/hash/extensions.hpp:91:17: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const std::deque<_Tp, _Alloc>’
return hash_value(val);
^
/usr/include/boost/functional/hash/extensions.hpp:97:17: note: template<class K, class C, class A> std::size_t boost::hash_value(const std::set<_Key, _Compare, _Alloc>&)
std::size_t hash_value(std::set<K, C, A> const& v)
^
/usr/include/boost/functional/hash/extensions.hpp:97:17: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const std::set<_Key, _Compare, _Alloc>’
return hash_value(val);
^
/usr/include/boost/functional/hash/extensions.hpp:103:17: note: template<class K, class C, class A> std::size_t boost::hash_value(const std::multiset<_Key, _Compare, _Alloc>&)
std::size_t hash_value(std::multiset<K, C, A> const& v)
^
/usr/include/boost/functional/hash/extensions.hpp:103:17: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const std::multiset<_Key, _Compare, _Alloc>’
return hash_value(val);
^
/usr/include/boost/functional/hash/extensions.hpp:109:17: note: template<class K, class T, class C, class A> std::size_t boost::hash_value(const std::map<_Key, _Tp, _Compare, _Alloc>&)
std::size_t hash_value(std::map<K, T, C, A> const& v)
^
/usr/include/boost/functional/hash/extensions.hpp:109:17: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const std::map<_Key, _Tp, _Compare, _Alloc>’
return hash_value(val);
^
/usr/include/boost/functional/hash/extensions.hpp:115:17: note: template<class K, class T, class C, class A> std::size_t boost::hash_value(const std::multimap<_Key, _Tp, _Compare, _Alloc>&)
std::size_t hash_value(std::multimap<K, T, C, A> const& v)
^
/usr/include/boost/functional/hash/extensions.hpp:115:17: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const std::multimap<_Key, _Tp, _Compare, _Alloc>’
return hash_value(val);
^
/usr/include/boost/functional/hash/extensions.hpp:121:17: note: template<class T> std::size_t boost::hash_value(const std::complex<_Tp>&)
std::size_t hash_value(std::complex<T> const& v)
^
/usr/include/boost/functional/hash/extensions.hpp:121:17: note: template argument deduction/substitution failed:
/usr/include/boost/functional/hash/extensions.hpp:269:34: note: ‘const wxUniChar’ is not derived from ‘const std::complex<_Tp>’
return hash_value(val);
^
make: *** [src/magicseteditor-main.o] Error 1
|