From ed7d44df366559b981238e2ee27ec3dc2fb3b200 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lukas=20K=C3=B6hler?= <lukas.koehler@h-da.de> Date: Thu, 23 Aug 2018 14:48:11 +0200 Subject: [PATCH] excluded compat warning --- pipelines/PAD1/Praktikum 1/jenkinsfile.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pipelines/PAD1/Praktikum 1/jenkinsfile.groovy b/pipelines/PAD1/Praktikum 1/jenkinsfile.groovy index c0da75c..a375afc 100644 --- a/pipelines/PAD1/Praktikum 1/jenkinsfile.groovy +++ b/pipelines/PAD1/Praktikum 1/jenkinsfile.groovy @@ -13,7 +13,7 @@ node { stage('Build') { sh( ''' - clang++ -std=c++11 -O0 -g -Wall -Wextra -Weverything -o binary *.cpp + clang++ -std=c++11 -O0 -g -Wall -Wextra -Weverything -Wno-c++98-compat -o binary *.cpp ''' ) } -- GitLab