Don't print the domain every time

This commit is contained in:
Andrew Hyatt 2018-06-03 16:41:33 -04:00
parent e11125fbf2
commit 9a4b5fd4cb
No known key found for this signature in database
GPG Key ID: 5456D0F696719C24

View File

@ -42,12 +42,6 @@ findSpecifications(std::vector<std::string> const &domains, SpecificationType ty
{
typename T::vector specifications;
printf("Specification domains: ");
for (std::string const &domain : domains) {
printf("%s ", domain.c_str());
}
printf("\n");
for (std::string const &domain : domains) {
if (domain == AnyDomain()) {
for (auto const &entry : _specifications) {