1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2025-06-27 21:01:16 +02:00

ANSI_YELLOW -> ANSI_WARNING

This commit is contained in:
Eelco Dolstra 2021-09-14 10:38:10 +02:00
parent 9bfdd556cf
commit 4ffda0af7c
7 changed files with 13 additions and 13 deletions

View file

@ -82,7 +82,7 @@ struct yellowtxt
template <class T>
std::ostream & operator<<(std::ostream & out, const yellowtxt<T> & y)
{
return out << ANSI_YELLOW << y.value << ANSI_NORMAL;
return out << ANSI_WARNING << y.value << ANSI_NORMAL;
}
template <class T>