From 30496d14e78f3c18f86a51b0086894f348244cc9 Mon Sep 17 00:00:00 2001 From: Andrew Noyes Date: Fri, 15 Mar 2024 07:44:11 -0700 Subject: [PATCH] Don't print out filename in TestDriver.cpp --- TestDriver.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/TestDriver.cpp b/TestDriver.cpp index 2bd1466..ee29d95 100644 --- a/TestDriver.cpp +++ b/TestDriver.cpp @@ -5,7 +5,6 @@ int main(int argc, char **argv) { for (int i = 1; i < argc; ++i) { - printf("Running: %s\n", argv[i]); std::ifstream t(argv[i], std::ios::binary); std::stringstream buffer; buffer << t.rdbuf();