This finishes support for ASAN on MSVC2012.
Details
Details
Diff Detail
Diff Detail
Event Timeline
Comment Actions
Formatting nit, otherwise LGTM.
| lib/interception/interception_win.cc | ||
|---|---|---|
| 186 | I'd much rather prefer something like const char *InterestingDLLs[] = { "kernel32.dll",
"msvcr110.dll", // VS2012
"msvcr120.dll", // VS2013
NULL };or const char *InterestingDLLs[] = {
"kernel32.dll",
"msvcr110.dll", // VS2012
"msvcr120.dll", // VS2013
NULL };[please pick the version that clang-format likes more] What do you think? | |
I'd much rather prefer something like
const char *InterestingDLLs[] = { "kernel32.dll", "msvcr110.dll", // VS2012 "msvcr120.dll", // VS2013 NULL };or
const char *InterestingDLLs[] = { "kernel32.dll", "msvcr110.dll", // VS2012 "msvcr120.dll", // VS2013 NULL };[please pick the version that clang-format likes more]
especially given the naming confusion (VS11=VS2012, VS12=VS2013).
What do you think?