Color: Removed FEATURE_COLOR conditional compile

- No need any more.
This commit is contained in:
Paul Beckingham 2015-09-10 22:17:25 -04:00
parent b04032c9d6
commit f55afe33d7
5 changed files with 0 additions and 43 deletions

View file

@ -57,7 +57,6 @@ int CmdColor::execute (std::string& output)
{
int rc = 0;
#ifdef FEATURE_COLOR
// Get the non-attribute, non-fancy command line arguments.
bool legend = false;
std::vector <std::string> words = context.cli2.getWords ();
@ -263,10 +262,6 @@ int CmdColor::execute (std::string& output)
}
output = out.str ();
#else
output = "Color not supported.\n";
#endif
return rc;
}