From 2614aabe1d72359575cbc508da917780c2145391 Mon Sep 17 00:00:00 2001 From: Michael Guttmann <michael.guttmann@student.tugraz.at> Date: Thu, 25 Mar 2021 11:33:17 +0100 Subject: [PATCH] compile with -std=c++17 --- 2021-oop1/ku/stream-03/productv2/main.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/2021-oop1/ku/stream-03/productv2/main.cpp b/2021-oop1/ku/stream-03/productv2/main.cpp index e278d3e..ff1d1ca 100644 --- a/2021-oop1/ku/stream-03/productv2/main.cpp +++ b/2021-oop1/ku/stream-03/productv2/main.cpp @@ -1,6 +1,8 @@ #include <cstdio> #include "Prod.hpp" +// compile with: clang++ -std=c++17 -Wall -o prod Prod.cpp main.cpp -g + int main(void) { { -- GitLab