mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-08-09 11:25:55 +00:00
llvm-cov: Fix a typo
It doesn't make sense for this default parameter to be false, since false makes the function a no-op. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@217945 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -49,7 +49,7 @@ inline raw_ostream &operator<<(const ColoredRawOstream &OS, T &&Value) {
|
|||||||
/// is true. Returns an object that resets the color when destroyed.
|
/// is true. Returns an object that resets the color when destroyed.
|
||||||
inline ColoredRawOstream colored_ostream(raw_ostream &OS,
|
inline ColoredRawOstream colored_ostream(raw_ostream &OS,
|
||||||
raw_ostream::Colors Color,
|
raw_ostream::Colors Color,
|
||||||
bool IsColorUsed = false) {
|
bool IsColorUsed = true) {
|
||||||
if (IsColorUsed)
|
if (IsColorUsed)
|
||||||
OS.changeColor(Color);
|
OS.changeColor(Color);
|
||||||
return ColoredRawOstream(OS, IsColorUsed);
|
return ColoredRawOstream(OS, IsColorUsed);
|
||||||
|
Reference in New Issue
Block a user