This makes it symmetric with all other flags and makes it easier to not forget to initialize it.
Details
Details
Diff Detail
Diff Detail
Event Timeline
lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp | ||
---|---|---|
823 | Can we add comments for these bool arguments, I have seen this done in llvm/clang and really helps readability e.g.: /*artificial*/ false, /*location_is_constant_data*/ false, /*static_member*/ false); Same goes for other places as well. |
lldb/source/Plugins/SymbolFile/NativePDB/SymbolFileNativePDB.cpp | ||
---|---|---|
823 | commit f9586a3b3c28f87652d00512236c43e8951a1bc4 (HEAD -> master, origin/master, origin/HEAD) Replace bool constants with named constants for improved readibility (NFC) |
Can we add comments for these bool arguments, I have seen this done in llvm/clang and really helps readability e.g.:
Same goes for other places as well.