Open
Description
Right now djinni creates a static std::string const
for each string constant. This adds a bunch of static initializers which perform allocations and copy data onto the heap. This increases startup times (static initializers run before main
) when we could just reference that data directly in a constexpr std::string_view
for free.
Metadata
Metadata
Assignees
Labels
No labels