summaryrefslogtreecommitdiff
path: root/modules/CIAO/MPC/config/ciao_vcwarnings.mpb
blob: f02556f824c6ef28c2c5f704256d99441774d445 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// -*- MPC -*-
// $Id$

// This file contains optional features that disable VC8 warnings that were
// not present in earlier versions. Some people may consider these superfluous
// or have already checked code to be sure it causes no trouble. So these
// warnings are disabled by default. To enable them, generate your projects
// with the feature set to 0.

feature(vc_avoid_deprecated_warnings) {
  specific(prop:microsoft) {
    DisableSpecificWarnings += 4996
  }
}

feature(vc_avoid_dominance_warnings) {
  specific(prop:microsoft) {
    DisableSpecificWarnings += 4250
  }
}