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:
parent
819e5ea08e
commit
438dd21048
1 changed files with 3 additions and 2 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue