From 70eefcf4f263aa5c25f3c9ff0db8f6f199ef0fb9 Mon Sep 17 00:00:00 2001 From: Alan Turner Date: Tue, 10 Oct 2023 23:15:03 +0000 Subject: [PATCH] Change config_header to literal "" --- library/src/jit_library/src/common.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/library/src/jit_library/src/common.cpp b/library/src/jit_library/src/common.cpp index 2db3aa97df..807c9a3006 100644 --- a/library/src/jit_library/src/common.cpp +++ b/library/src/jit_library/src/common.cpp @@ -19,13 +19,11 @@ std::string ToString(DataType dt) throw std::runtime_error("Incorrect data type"); } -const std::string config_header = ""; - std::unordered_map GetHeaders() { auto headers = ck_headers(); headers.insert( - {"ck/config.h", config_header}); + {"ck/config.h", ""}); return headers; }