We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cec7d94 commit bcc78b8Copy full SHA for bcc78b8
1 file changed
README.md
@@ -109,7 +109,7 @@ constexpr hat::fixed_signature pattern = hat::compile_signature<"48 8D 05 ? ? ?
109
// Parse using the UDLs at compile time
110
using namespace hat::literals;
111
constexpr hat::fixed_signature pattern = "48 8D 05 ? ? ? ? E8"_sig; // stack owned
112
-constexpr hat::signature_view pattern = "48 8D 05 ? ? ? ? E8"_sigv; // static lifetime
+constexpr hat::signature_view pattern = "48 8D 05 ? ? ? ? E8"_sigv; // static lifetime (requires C++23)
113
114
// Parse it at runtime
115
using parsed_t = hat::result<hat::signature, hat::signature_parse_error>;
0 commit comments