Merge pull request #3212 from nomad-software/issue_14079

Issue 14079 - Variable templates' documentation not generated.
This commit is contained in:
JakobOvrum 2015-05-01 08:44:57 +09:00
commit c775917a34

View file

@ -5183,6 +5183,12 @@ unittest
}
}
/**
* Detect whether type $(D T) is a narrow string.
*
* All arrays that use char, wchar, and their qualified versions are narrow
* strings. (Those include string and wstring).
*/
enum bool isNarrowString(T) = (is(T : const char[]) || is(T : const wchar[])) && !isAggregateType!T && !isStaticArray!T;
unittest