summaryrefslogtreecommitdiff
path: root/src/md/inc
AgeCommit message (Collapse)AuthorFilesLines
2018-06-14clean up list of disabled warnings. (#18318)Sergey Andreenko1-14/+14
* delete warnings that do not longer exist For example C4171 was deleted after VS 6.0 (https://docs.microsoft.com/en-us/previous-versions/visualstudio/visual-studio-6.0/aa233011(v=vs.60)) * delete C4206 fromm the list because its default value is 4, so this line is useless. * reenable warning as error. * enable warning C4430 and fix places that trigger it. * fix C4334 * format the list * fix ssize_t
2018-02-17delete unused mirror files (#16423)Sergey Andreenko1-1/+0
2017-03-23Delete NewMergerJan Kotas2-26/+0
This was only used as part of C++ link.exe for IJW
2017-02-14Remove never defined FEATURE_METADATA_STANDALONE_WINRT_ROdanmosemsft1-4/+0
2017-02-12Remove never defined FEATURE_FUSIONdanmosemsft1-705/+0
2017-02-12Remove never defined FEATURE_COMINTEROP_TLB_SUPPORT and files that require ↵danmosemsft1-777/+0
it to be defined
2017-02-10Remove always defined FEATURE_CORECLRdanmosemsft2-12/+0
2016-01-27Update license headersdotnet-bot21-84/+63
2015-08-26Return error upon attemping to create named objects in PAL.Koundinya Veluri1-1/+0
Update PAL APIs that create named objects (mutex, semaphore, event, file mapping) to return a not-supported error code. It was decided to not support cross-process synchronization in PAL at present time due to complexities involved in reliably emulating Windows' behavior. @stephentoub has already made changes on the FX side to throw PlatformNotSupportedException in these cases. Related to issue #1237.
2015-05-26Fix warning no-overloaded-virtualJan Vorlicek1-0/+4
This warning is issued when a derived class defines a virtual method with the same name as its base class, but different set of parameters. The base class virtual method is hidden in that case. Clang issues a warning here. To fix the warning, I have added "using Base::Method" to the private section of all the derived classes.
2015-05-26Fix the virtual destructor warningJan Vorlicek4-4/+6
This change changes destructors to be virtual or adds virtual ones where they were missing based on the clang warnings.
2015-03-26Fix about 12 kinds of warnings over the codebaseJan Vorlicek1-1/+1
This change fixes: 1) Member initiazalization order in class constructor didn't correspond to the member order in some classes 2) Objects with vtables were copied via memcpy. While this is intentional, cast of the pointers to void* is required to silence clang warning 3) Switch case statements containing values of different enums 4) Casting int to pointer 5) Missing return value in methods with _ASSERTE 6) Class name classifier on methods in the .h 7) Invalid position of the DECLSPEC_ALIGN at few places - it had no effect 8) Invalid position of the 'used' attribute 9) Issue with comparing holders to NULL 10) Operator 'new' returning NULL without being marked with throw() or noexcept 11) Variables marked as 'extern' at the declaration / initialization place 12) Data structure declared as struct at one place and forward declared as class at another Some disabled warnings were no longer happening, so options to disable them were removed too
2015-01-30Initial commit to populate CoreCLR repo dotnet-bot22-0/+9214
[tfs-changeset: 1407945]