summaryrefslogtreecommitdiff
path: root/src/utilcode/sigparser.cpp
AgeCommit message (Collapse)AuthorFilesLines
2016-01-27Update license headersdotnet-bot1-4/+3
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-bot1-0/+197
[tfs-changeset: 1407945]