From 83077935a30efdbb2b1a130fd267f75bf83dea28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bjarki=20=C3=81g=C3=BAst=20Gu=C3=B0mundsson?= Date: Mon, 30 Dec 2024 12:57:13 +0000 Subject: [PATCH] Remove GCC optimization flags from header They cause compile errors in std::set. --- code/header.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/code/header.cpp b/code/header.cpp index ec90805..1963cc6 100644 --- a/code/header.cpp +++ b/code/header.cpp @@ -1,5 +1,3 @@ -#pragma GCC optimize("Ofast","unroll-loops") -#pragma GCC target("avx2,fma") #include using namespace std; #define rep(i,a,b) for (__typeof(a) i=(a); i<(b); ++i)