Fix style for template constraints.

I'm simply trying to follow what I see in the wild; not sure about this
either.
This commit is contained in:
yamadapc 2014-07-12 20:10:05 -03:00
parent 342da0b563
commit b47a79deb2

View file

@ -97,7 +97,7 @@ unittest
}
string colorHelper(T)(const string str, const T t=T.init)
if(is(T : fg) || is(T : bg) || is(T : mode))
if(is(T : fg) || is(T : bg) || is(T : mode))
{
return format("\033[%dm%s\033[0m", t, str);
}