IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

QxOrm Discussion :

Erreur de compilation avec Boost 1.54 et MinGW 4.8 (mais pas 4.7)


Sujet :

QxOrm

  1. #1
    Nouveau Candidat au Club
    Inscrit en
    Octobre 2013
    Messages
    1
    Détails du profil
    Informations forums :
    Inscription : Octobre 2013
    Messages : 1
    Points : 1
    Points
    1
    Par défaut Erreur de compilation avec Boost 1.54 et MinGW 4.8 (mais pas 4.7)
    Erreur de compilation avec mingw 4.8 , boost 1.54 et Qt 5.1.1 windows XP x32
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    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
    13:57:15: Running steps for project QxOrm...
    13:57:15: Configuration unchanged, skipping qmake step.
    13:57:15: Starting: "D:\bin\mingw32\bin\mingw32-make.exe" 
    D:/bin/mingw32/bin/mingw32-make -f Makefile.Debug
    mingw32-make[1]: Entering directory 'D:/src/QxOrm'
    g++ -x c++-header -c -march=i686 -mtune=core2 -pipe -fno-keep-inline-dllexport -g -frtti -Wall -Wextra -fexceptions -mthreads -DUNICODE -D_QX_SERIALIZE_BINARY_ENABLED -D_QX_SERIALIZE_XML_ENABLED -D_QX_BUILDING_QX_ORM -DQT_QML_DEBUG -DQT_DECLARATIVE_DEBUG -DQT_SQL_LIB -DQT_XML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I. -I"include" -I"..\..\include\boost-1_54" -I"..\..\bin\Qt32-5.1.1\include" -I"..\..\bin\Qt32-5.1.1\include\QtSql" -I"..\..\bin\Qt32-5.1.1\include\QtXml" -I"..\..\bin\Qt32-5.1.1\include\QtNetwork" -I"..\..\bin\Qt32-5.1.1\include\QtCore" -I"qt\moc" -I"d:\bin\Qt32-5.1.1\mkspecs\win32-g++" -o debug\QxPrecompiled.h.gch\c++ include\QxPrecompiled.h
    In file included from ..\..\include\boost-1_54/boost/tuple/tuple.hpp:33:0,
                     from ..\..\include\boost-1_54/boost/unordered/detail/allocate.hpp:27,
                     from ..\..\include\boost-1_54/boost/unordered/detail/buckets.hpp:15,
                     from ..\..\include\boost-1_54/boost/unordered/detail/table.hpp:10,
                     from ..\..\include\boost-1_54/boost/unordered/detail/equivalent.hpp:14,
                     from ..\..\include\boost-1_54/boost/unordered/unordered_map.hpp:17,
                     from ..\..\include\boost-1_54/boost/unordered_map.hpp:16,
                     from include\QxPrecompiled.h:90:
    ..\..\include\boost-1_54/boost/tuple/detail/tuple_basic.hpp: In function 'typename boost::tuples::access_traits<typename boost::tuples::element<N, boost::tuples::cons<HT, TT> >::type>::const_type boost::tuples::get(const boost::tuples::cons<HT, TT>&)':
    ..\..\include\boost-1_54/boost/tuple/detail/tuple_basic.hpp:228:45: warning: typedef 'cons_element' locally defined but not used [-Wunused-local-typedefs]
       typedef BOOST_DEDUCED_TYPENAME impl::type cons_element;
                                                 ^
    In file included from ..\..\include\boost-1_54/boost/unordered/unordered_map.hpp:18:0,
                     from ..\..\include\boost-1_54/boost/unordered_map.hpp:16,
                     from include\QxPrecompiled.h:90:
    ..\..\include\boost-1_54/boost/unordered/detail/unique.hpp: In member function 'boost::unordered::detail::table_impl<Types>::value_type& boost::unordered::detail::table_impl<Types>::operator[](const key_type&)':
    ..\..\include\boost-1_54/boost/unordered/detail/unique.hpp:337:54: warning: typedef 'mapped_type' locally defined but not used [-Wunused-local-typedefs]
                 typedef typename value_type::second_type mapped_type;
                                                          ^
    In file included from ..\..\include\boost-1_54/boost/mpl/aux_/integral_wrapper.hpp:22:0,
                     from ..\..\include\boost-1_54/boost/mpl/int.hpp:20,
                     from ..\..\include\boost-1_54/boost/type_traits/detail/template_arity_spec.hpp:10,
                     from ..\..\include\boost-1_54/boost/type_traits/detail/bool_trait_def.hpp:14,
                     from ..\..\include\boost-1_54/boost/type_traits/is_same.hpp:31,
                     from ..\..\include\boost-1_54/boost/type_traits/intrinsics.hpp:205,
                     from ..\..\include\boost-1_54/boost/type_traits/is_convertible.hpp:15,
                     from ..\..\include\boost-1_54/boost/unordered/detail/util.hpp:14,
                     from ..\..\include\boost-1_54/boost/unordered/detail/buckets.hpp:14,
                     from ..\..\include\boost-1_54/boost/unordered/detail/table.hpp:10,
                     from ..\..\include\boost-1_54/boost/unordered/detail/equivalent.hpp:14,
                     from ..\..\include\boost-1_54/boost/unordered/unordered_map.hpp:17,
                     from ..\..\include\boost-1_54/boost/unordered_map.hpp:16,
                     from include\QxPrecompiled.h:90:
    ..\..\include\boost-1_54/boost/concept_check.hpp: In function 'void boost::function_requires(Model*)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check45' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:45:7: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
           BOOST_CONCEPT_ASSERT((Model));
           ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::AdaptableGenerator<Func, Return>::~AdaptableGenerator()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check453' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:453:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Convertible<result_type, Return>));
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::AdaptableUnaryFunction<Func, Return, Arg>::~AdaptableUnaryFunction()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check465' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:465:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Convertible<result_type, Return>));
               ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check466' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:466:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Convertible<Arg, argument_type>));
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::AdaptableBinaryFunction<Func, Return, First, Second>::~AdaptableBinaryFunction()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check484' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:484:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Convertible<result_type, Return>));
               ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check485' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:485:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Convertible<First, first_argument_type>));
               ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check486' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:486:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Convertible<Second, second_argument_type>));
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::InputIterator<TT>::~InputIterator()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check517' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:517:9: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
             BOOST_CONCEPT_ASSERT((SignedInteger<difference_type>));
             ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check518' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:518:9: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
             BOOST_CONCEPT_ASSERT((Convertible<iterator_category, std::input_iterator_tag>));
             ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::ForwardIterator<TT>::~ForwardIterator()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check551' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:548:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Convertible<
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::BidirectionalIterator<TT>::~BidirectionalIterator()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check579' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:576:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Convertible<
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::RandomAccessIterator<TT>::~RandomAccessIterator()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check609' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:606:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Convertible<
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::Container<C>::~Container()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check653' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:653:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((InputIterator<const_iterator>));
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::Mutable_Container<C>::~Mutable_Container()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check681' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:680:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((
               ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check683' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:683:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((InputIterator<iterator>));
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::ForwardContainer<C>::~ForwardContainer()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check703' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:700:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::Mutable_ForwardContainer<C>::~Mutable_ForwardContainer()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check716' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:713:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::ReversibleContainer<C>::~ReversibleContainer()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check731' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:729:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((
               ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check733' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:733:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((BidirectionalIterator<const_reverse_iterator>));
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::Mutable_ReversibleContainer<C>::~Mutable_ReversibleContainer()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check755' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:755:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Mutable_BidirectionalIterator<iterator>));
               ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check756' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:756:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Mutable_BidirectionalIterator<reverse_iterator>));
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::RandomAccessContainer<C>::~RandomAccessContainer()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check776' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:773:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::Mutable_RandomAccessContainer<C>::~Mutable_RandomAccessContainer()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check800' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:800:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Mutable_RandomAccessIterator<typename self::iterator>));
               ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check801' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:801:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((Mutable_RandomAccessIterator<typename self::reverse_iterator>));
               ^
    ..\..\include\boost-1_54/boost/concept_check.hpp: In destructor 'boost::AssociativeContainer<C>::~AssociativeContainer()':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check905' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:905:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((BinaryPredicate<key_compare,key_type,key_type>));
               ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check908' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/concept_check.hpp:908:11: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
               BOOST_CONCEPT_ASSERT((BinaryPredicate<value_compare,value_type_,value_type_>));
               ^
    ..\..\include\boost-1_54/boost/range/algorithm/equal.hpp: In function 'bool boost::range::equal(const SinglePassRange1&, const SinglePassRange2&)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check172' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/range/concepts.hpp:92:45: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
         #define BOOST_RANGE_CONCEPT_ASSERT( x ) BOOST_CONCEPT_ASSERT( x )
                                                 ^
    ..\..\include\boost-1_54/boost/range/algorithm/equal.hpp:172:13: note: in expansion of macro 'BOOST_RANGE_CONCEPT_ASSERT'
                 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<const SinglePassRange1> ));
                 ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check173' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/range/concepts.hpp:92:45: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
         #define BOOST_RANGE_CONCEPT_ASSERT( x ) BOOST_CONCEPT_ASSERT( x )
                                                 ^
    ..\..\include\boost-1_54/boost/range/algorithm/equal.hpp:173:13: note: in expansion of macro 'BOOST_RANGE_CONCEPT_ASSERT'
                 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<const SinglePassRange2> ));
                 ^
    ..\..\include\boost-1_54/boost/range/algorithm/equal.hpp: In function 'bool boost::range::equal(const SinglePassRange1&, const SinglePassRange2&, BinaryPredicate)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check185' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/range/concepts.hpp:92:45: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
         #define BOOST_RANGE_CONCEPT_ASSERT( x ) BOOST_CONCEPT_ASSERT( x )
                                                 ^
    ..\..\include\boost-1_54/boost/range/algorithm/equal.hpp:185:13: note: in expansion of macro 'BOOST_RANGE_CONCEPT_ASSERT'
                 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<const SinglePassRange1> ));
                 ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check186' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/range/concepts.hpp:92:45: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
         #define BOOST_RANGE_CONCEPT_ASSERT( x ) BOOST_CONCEPT_ASSERT( x )
                                                 ^
    ..\..\include\boost-1_54/boost/range/algorithm/equal.hpp:186:13: note: in expansion of macro 'BOOST_RANGE_CONCEPT_ASSERT'
                 BOOST_RANGE_CONCEPT_ASSERT(( SinglePassRangeConcept<const SinglePassRange2> ));
                 ^
    In file included from ..\..\include\boost-1_54/boost/algorithm/string/finder.hpp:23:0,
                     from ..\..\include\boost-1_54/boost/algorithm/string/find.hpp:22,
                     from ..\..\include\boost-1_54/boost/algorithm/string/predicate.hpp:23,
                     from ..\..\include\boost-1_54/boost/algorithm/string.hpp:21,
                     from include\QxPrecompiled.h:91:
    ..\..\include\boost-1_54/boost/algorithm/string/detail/finder.hpp: In member function 'boost::iterator_range<Iterator> boost::algorithm::detail::last_finderF<SearchIteratorT, PredicateT>::findit(ForwardIteratorT, ForwardIteratorT, std::forward_iterator_tag) const':
    ..\..\include\boost-1_54/boost/algorithm/string/detail/finder.hpp:145:46: warning: typedef 'input_iterator_type' locally defined but not used [-Wunused-local-typedefs]
                         typedef ForwardIteratorT input_iterator_type;
                                                  ^
    ..\..\include\boost-1_54/boost/algorithm/string/detail/finder.hpp: In member function 'boost::iterator_range<Iterator> boost::algorithm::detail::nth_finderF<SearchIteratorT, PredicateT>::find_forward(ForwardIteratorT, ForwardIteratorT, unsigned int) const':
    ..\..\include\boost-1_54/boost/algorithm/string/detail/finder.hpp:266:46: warning: typedef 'input_iterator_type' locally defined but not used [-Wunused-local-typedefs]
                         typedef ForwardIteratorT input_iterator_type;
                                                  ^
    ..\..\include\boost-1_54/boost/algorithm/string/detail/finder.hpp: In member function 'boost::iterator_range<Iterator> boost::algorithm::detail::nth_finderF<SearchIteratorT, PredicateT>::find_backward(ForwardIteratorT, ForwardIteratorT, unsigned int) const':
    ..\..\include\boost-1_54/boost/algorithm/string/detail/finder.hpp:301:46: warning: typedef 'input_iterator_type' locally defined but not used [-Wunused-local-typedefs]
                         typedef ForwardIteratorT input_iterator_type;
                                                  ^
    ..\..\include\boost-1_54/boost/algorithm/string/detail/finder.hpp: In function 'boost::iterator_range<IteratorT> boost::algorithm::detail::find_head_impl(ForwardIteratorT, ForwardIteratorT, unsigned int, std::random_access_iterator_tag)':
    ..\..\include\boost-1_54/boost/algorithm/string/detail/finder.hpp:365:42: warning: typedef 'input_iterator_type' locally defined but not used [-Wunused-local-typedefs]
                     typedef ForwardIteratorT input_iterator_type;
                                              ^
    ..\..\include\boost-1_54/boost/algorithm/string/detail/finder.hpp: In function 'boost::iterator_range<IteratorT> boost::algorithm::detail::find_tail_impl(ForwardIteratorT, ForwardIteratorT, unsigned int, std::random_access_iterator_tag)':
    ..\..\include\boost-1_54/boost/algorithm/string/detail/finder.hpp:439:42: warning: typedef 'input_iterator_type' locally defined but not used [-Wunused-local-typedefs]
                     typedef ForwardIteratorT input_iterator_type;
                                              ^
    In file included from ..\..\include\boost-1_54/boost/mpl/aux_/integral_wrapper.hpp:22:0,
                     from ..\..\include\boost-1_54/boost/mpl/int.hpp:20,
                     from ..\..\include\boost-1_54/boost/type_traits/detail/template_arity_spec.hpp:10,
                     from ..\..\include\boost-1_54/boost/type_traits/detail/bool_trait_def.hpp:14,
                     from ..\..\include\boost-1_54/boost/type_traits/is_same.hpp:31,
                     from ..\..\include\boost-1_54/boost/type_traits/intrinsics.hpp:205,
                     from ..\..\include\boost-1_54/boost/type_traits/is_convertible.hpp:15,
                     from ..\..\include\boost-1_54/boost/unordered/detail/util.hpp:14,
                     from ..\..\include\boost-1_54/boost/unordered/detail/buckets.hpp:14,
                     from ..\..\include\boost-1_54/boost/unordered/detail/table.hpp:10,
                     from ..\..\include\boost-1_54/boost/unordered/detail/equivalent.hpp:14,
                     from ..\..\include\boost-1_54/boost/unordered/unordered_map.hpp:17,
                     from ..\..\include\boost-1_54/boost/unordered_map.hpp:16,
                     from include\QxPrecompiled.h:90:
    ..\..\include\boost-1_54/boost/algorithm/string/iter_find.hpp: In function 'SequenceSequenceT& boost::algorithm::iter_find(SequenceSequenceT&, RangeT&, FinderT)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check81' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/iter_find.hpp:77:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    ..\..\include\boost-1_54/boost/algorithm/string/iter_find.hpp: In function 'SequenceSequenceT& boost::algorithm::iter_split(SequenceSequenceT&, RangeT&, FinderT)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check151' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/iter_find.hpp:148:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp: In function 'OutputIteratorT boost::algorithm::find_format_copy(OutputIteratorT, const RangeT&, FinderT, FormatterT)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check69' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:65:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check74' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:70:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp: In function 'SequenceT boost::algorithm::find_format_copy(const SequenceT&, FinderT, FormatterT)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check103' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:99:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check108' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:104:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp: In function 'void boost::algorithm::find_format(SequenceT&, FinderT, FormatterT)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check139' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:135:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check144' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:140:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT(( 
                 ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp: In function 'OutputIteratorT boost::algorithm::find_format_all_copy(OutputIteratorT, const RangeT&, FinderT, FormatterT)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check188' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:184:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT(( 
                 ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check193' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:189:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT(( 
                 ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp: In function 'SequenceT boost::algorithm::find_format_all_copy(const SequenceT&, FinderT, FormatterT)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check223' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:219:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check228' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:224:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp: In function 'void boost::algorithm::find_format_all(SequenceT&, FinderT, FormatterT)':
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check261' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:257:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:20: warning: typedef 'boost_concept_check266' locally defined but not used [-Wunused-local-typedefs]
           BOOST_PP_CAT(boost_concept_check,__LINE__)
                        ^
    ..\..\include\boost-1_54/boost/preprocessor/cat.hpp:29:34: note: in definition of macro 'BOOST_PP_CAT_I'
     #    define BOOST_PP_CAT_I(a, b) a ## b
                                      ^
    ..\..\include\boost-1_54/boost/concept/detail/general.hpp:71:7: note: in expansion of macro 'BOOST_PP_CAT'
           BOOST_PP_CAT(boost_concept_check,__LINE__)
           ^
    ..\..\include\boost-1_54/boost/concept/assert.hpp:44:5: note: in expansion of macro 'BOOST_CONCEPT_ASSERT_FN'
         BOOST_CONCEPT_ASSERT_FN(void(*)ModelInParens)
         ^
    ..\..\include\boost-1_54/boost/algorithm/string/find_format.hpp:262:13: note: in expansion of macro 'BOOST_CONCEPT_ASSERT'
                 BOOST_CONCEPT_ASSERT((
                 ^
    In file included from ..\..\include\boost-1_54/boost/bind/bind.hpp:29:0,
                     from ..\..\include\boost-1_54/boost/bind.hpp:22,
                     from include\QxPrecompiled.h:94:
    ..\..\include\boost-1_54/boost/bind/arg.hpp: In constructor 'boost::arg<I>::arg(const T&)':
    ..\..\include\boost-1_54/boost/bind/arg.hpp:37:22: warning: typedef 'T_must_be_placeholder' locally defined but not used [-Wunused-local-typedefs]
             typedef char T_must_be_placeholder[ I == is_placeholder<T>::value? 1: -1 ];
                          ^
    g++ -c -include debug\QxPrecompiled.h -march=i686 -mtune=core2 -pipe -fno-keep-inline-dllexport -g -frtti -Wall -Wextra -fexceptions -mthreads -DUNICODE -D_QX_SERIALIZE_BINARY_ENABLED -D_QX_SERIALIZE_XML_ENABLED -D_QX_BUILDING_QX_ORM -DQT_QML_DEBUG -DQT_DECLARATIVE_DEBUG -DQT_SQL_LIB -DQT_XML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -I. -I"include" -I"..\..\include\boost-1_54" -I"..\..\bin\Qt32-5.1.1\include" -I"..\..\bin\Qt32-5.1.1\include\QtSql" -I"..\..\bin\Qt32-5.1.1\include\QtXml" -I"..\..\bin\Qt32-5.1.1\include\QtNetwork" -I"..\..\bin\Qt32-5.1.1\include\QtCore" -I"qt\moc" -I"d:\bin\Qt32-5.1.1\mkspecs\win32-g++" -o debug\bool_array.o src\QxMemLeak\bool_array.cpp
     
    Makefile.Debug:6858: recipe for target 'debug/bool_array.o' failed
    mingw32-make[1]: *** [debug/bool_array.o] Error 1
    mingw32-make[1]: Leaving directory 'D:/src/QxOrm'
    Makefile:34: recipe for target 'debug' failed
    mingw32-make: *** [debug] Error 2
    13:57:38: The process "D:\bin\mingw32\bin\mingw32-make.exe" exited with code 2.
    Error while building/deploying project QxOrm (kit: Desktop 2)
    When executing step 'Make'
    13:57:38: Elapsed time: 00:22.
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     
    bjam.exe --prefix=d: --build-dir=build --toolset=gcc --with-serialization variant=debug,release link=shared threading=multi runtime-link=shared install
     
    isEmpty(QX_BOOST_INCLUDE_PATH) { QX_BOOST_INCLUDE_PATH = $$quote(d:/include/boost-1_54) }
    isEmpty(QX_BOOST_LIB_PATH) { QX_BOOST_LIB_PATH = $$quote(d:/lib) }
    isEmpty(QX_BOOST_LIB_SERIALIZATION_DEBUG) { QX_BOOST_LIB_SERIALIZATION_DEBUG = "boost_serialization-mgw48-mt-d-1_54" }
    isEmpty(QX_BOOST_LIB_SERIALIZATION_RELEASE) { QX_BOOST_LIB_SERIALIZATION_RELEASE = "boost_serialization-mgw48-mt-1_54" }
    esque compile en command line je trouve les sames erreurs

    en Windows 7 x32 et x64 le process cc1plus.exe tombee


    en compillation avec mingw 4.7 tout e normale

    -------------------
    escuze moi pour mon francaise

  2. #2
    Expert confirmé

    Profil pro
    Inscrit en
    Avril 2010
    Messages
    481
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2010
    Messages : 481
    Points : 4 238
    Points
    4 238
    Par défaut


    C'est un bug connu de MinGW avec des precompiled header trop gros : le process cc1plus.exe crash !

    Plus d'infos sur ces liens :
    http://gcc.gnu.org/bugzilla/show_bug.cgi?id=56926
    http://stackoverflow.com/questions/1...ed-header-file

    Tu peux trouver d'avantages d'infos en faisant une recherche : "MinGW large precompiled header"...

    Pour éviter que ça crash, ouvre le fichier QxOrm.pro et supprime la ligne suivante (ou commente la) :
    PRECOMPILED_HEADER = ./include/QxPrecompiled.h

    Par contre, les temps de compilation vont être très très très lonngggggsssssss, donc je ne conseille pas d'utiliser QxOrm sans les precompiled header !

    Si tout fonctionne avec ton MinGW gcc 4.7 alors utilise cette version en attendant que ce bug soit corrigé dans MinGW.

    Remarque : pour le développement sous Windows, je recommande d'utiliser MSVC++ à la place de MinGW (les versions Express sont gratuites).

    EDIT : j'ai créé le sujet suivant pour cette problématique : http://www.developpez.net/forums/d14...-sous-windows/
    Le site de la bibliothèque QxOrm : bibliothèque C++ de gestion de données (Mapping Objet Relationnel ou ORM) basée sur les frameworks Qt et boost.
    QxEntityEditor : éditeur graphique pour la bibliothèque QxOrm (application multi-plateforme pour gérer graphiquement le modèle d'entités).

    Tutoriel : installer un environnement de développement avec QxOrm sous Windows.
    Tutoriel qxBlog : gestion de blogs en C++/Qt.
    Tutoriel qxClientServer : création d'un serveur d'applications en C++/Qt.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Erreur de compilation avec boost 1.49
    Par ruddy32 dans le forum QxOrm
    Réponses: 1
    Dernier message: 14/11/2012, 10h39
  2. Erreur de compilation de boost::date_time avec mingw
    Par shenron666 dans le forum Code::Blocks
    Réponses: 1
    Dernier message: 26/08/2006, 18h18
  3. Erreur de compilation avec SWITCH et CASE
    Par barbarello dans le forum C++
    Réponses: 4
    Dernier message: 21/01/2006, 21h47
  4. probleme de compilation avec boost
    Par doof dans le forum Bibliothèques
    Réponses: 7
    Dernier message: 07/06/2005, 21h38
  5. [FreePascal]Erreur de compilation avec Dev-Pascal
    Par youngeikichi dans le forum Free Pascal
    Réponses: 3
    Dernier message: 17/02/2005, 14h22

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo