#pragma once #include #include namespace vcpkg { struct StringLiteral : ZStringView { template constexpr StringLiteral(const char (&str)[N]) : ZStringView(str) { } operator std::string() const { return std::string(data(), size()); } }; }