Instead this ```for(std::size_t TargetIndex = gli...
# getting-started
e
Instead this
Copy code
for(std::size_t TargetIndex = gli::TARGET_FIRST; TargetIndex <= gli::TARGET_LAST; ++TargetIndex)
		for(std::size_t FormatIndex = gli::FORMAT_FIRST; FormatIndex <= gli::FORMAT_LAST; ++FormatIndex)
		{
			gli::format const Format = static_cast<gli::format>(FormatIndex);
			gli::target const Target = static_cast<gli::target>(TargetIndex);
I can simply
Copy code
for (target in TARGET_FIRST..TARGET_LAST)
    for (format in FORMAT_FIRST..FORMAT_LAST)
K 3