Commit 70eefcf4 authored by Alan Turner's avatar Alan Turner
Browse files

Change config_header to literal ""

parent 37c3bc1a
...@@ -19,13 +19,11 @@ std::string ToString(DataType dt) ...@@ -19,13 +19,11 @@ std::string ToString(DataType dt)
throw std::runtime_error("Incorrect data type"); throw std::runtime_error("Incorrect data type");
} }
const std::string config_header = "";
std::unordered_map<std::string_view, std::string_view> GetHeaders() std::unordered_map<std::string_view, std::string_view> GetHeaders()
{ {
auto headers = ck_headers(); auto headers = ck_headers();
headers.insert( headers.insert(
{"ck/config.h", config_header}); {"ck/config.h", ""});
return headers; return headers;
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment