0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-12-02 03:32:52 +01:00

ircd::rfc3986: Increase visibility of grammar namespace for clang.

This commit is contained in:
Jason Volk 2020-02-01 21:55:13 -08:00
parent 819e5ea08e
commit 438dd21048

View file

@ -54,7 +54,8 @@ struct ircd::rfc3986::uri
uri() = default; uri() = default;
}; };
namespace ircd::rfc3986::parser namespace ircd { namespace rfc3986 { namespace parser
__attribute__((visibility("default")))
{ {
using it = const char *; using it = const char *;
using unused = boost::spirit::unused_type; using unused = boost::spirit::unused_type;
@ -119,7 +120,7 @@ namespace ircd::rfc3986::parser
extern const rule<> absolute_uri; extern const rule<> absolute_uri;
extern const rule<> uri; extern const rule<> uri;
extern const rule<> uri_ref; // uri | relative_ref extern const rule<> uri_ref; // uri | relative_ref
}; }}}
// Validator suite // Validator suite
namespace ircd::rfc3986 namespace ircd::rfc3986