From a19cc103ce0a26bc0bcb3335441c97aa8b3ae758 Mon Sep 17 00:00:00 2001 From: Jesse Ruderman Date: Mon, 12 Jul 2021 04:35:34 -0700 Subject: [PATCH] Fix typo in cxxflags --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7a62bcf2..c63d9cd3 100644 --- a/Makefile +++ b/Makefile @@ -84,7 +84,7 @@ ifeq (${TOOLCHAIN},clang) CXXFLAGS_EARLY += -march=native -fPIC CXXFLAGS_EARLY += -W -Wall -Wextra -Werror -pedantic CXXFLAGS_EARLY += -Wno-unused-parameter -Wno-implicit-fallthrough -Wno-maybe-uninitialized -Wno-unknown-warning-option - CXXFLAGS_EARLY += -Wno-invalid-offsetof -Wno-overloaded-virtua + CXXFLAGS_EARLY += -Wno-invalid-offsetof -Wno-overloaded-virtual endif ifeq (${TOOLCHAIN},gcc)