Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAleksey Kliger (λgeek) <alklig@microsoft.com>2020-01-13 23:15:09 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2020-01-13 23:15:09 +0300
commit6abab691ec71c3cb4f72dd6d8f630088c8330357 (patch)
treee005473fb8390a9a52fe798a2c7ddd740d562e99 /.gitattributes
parenta5cc4cd9ec6a595231c7aeb84a8166c736b867e3 (diff)
[netcore] Require use of MonoClass getters in Debug builds (#18267)
1. Update `build.sh` to use `--enable-checked-build=private_types` which forces the use of getter methods to access `MonoClass` fields. 2. Fix up some places that were accessing MonoClass directly. 3. Get rid of a spurious comma operator usage from an earlier refactoring: ```c z = a, b, c; ``` is the same as ```c z = a; b; c; ``` which is the same as just `z = a;` if `b` and `c` have no side-effects.
Diffstat (limited to '.gitattributes')
0 files changed, 0 insertions, 0 deletions