From d989f4f0e3b6bfef703c0c752e92a353c096ba5c Mon Sep 17 00:00:00 2001
From: Manuel Thalmann <m@nuth.ch>
Date: Tue, 19 Dec 2023 11:48:58 +0100
Subject: [PATCH] Prevent printing of unnecessary info

---
 aes-performance/aes-tboxes/aes.cpp | 1 -
 1 file changed, 1 deletion(-)

diff --git a/aes-performance/aes-tboxes/aes.cpp b/aes-performance/aes-tboxes/aes.cpp
index 81f4d2e..484d4ff 100644
--- a/aes-performance/aes-tboxes/aes.cpp
+++ b/aes-performance/aes-tboxes/aes.cpp
@@ -214,6 +214,5 @@ int main(int argc, char* argv[])
  
     std::cout << "AES (" << cycles  << " runs)\nElapsed time: ";
     std::cout << milliseconds << "ms\n"; // Before C++20
-    std::cout << "Last result: " << in << "\n";
     exit(in[0]);
 }