0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-06-02 10:08:56 +02:00

ircd::spirit: Enable qi::rule/karma::rule overrides for clang.

This commit is contained in:
Jason Volk 2022-06-19 19:42:08 -07:00
parent ffa62d0f4c
commit 7006391936
2 changed files with 6 additions and 0 deletions

View file

@ -11,6 +11,7 @@
#pragma once
#define HAVE_IRCD_SPIRIT_KARMA_RULE_H
#if defined(__clang__)
/// Custom reimplementation/interposition of the qi::rule template by
/// specializing the `char *` iterator, which is common to our generators.
///
@ -268,3 +269,5 @@ const
return ret;
}
#endif defined(__clang__)

View file

@ -11,6 +11,7 @@
#pragma once
#define HAVE_IRCD_SPIRIT_QI_RULE_H
#if defined(__clang__)
/// Custom reimplementation/interposition of the qi::rule template by
/// specializing the `const char *` iterator, which is common to our parsers.
///
@ -330,3 +331,5 @@ const
return ret;
}
#endif defined(__clang__)