From 18c448f0acf11088bdc89a623af09dcd6f80e6b3 Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Wed, 19 Oct 2022 13:38:48 -0700 Subject: [PATCH 1/4] More documentation --- ecsact/detail/grammar.hh | 1 + 1 file changed, 1 insertion(+) diff --git a/ecsact/detail/grammar.hh b/ecsact/detail/grammar.hh index 3e710d8..f83db09 100644 --- a/ecsact/detail/grammar.hh +++ b/ecsact/detail/grammar.hh @@ -8,6 +8,7 @@ #include "ecsact/parse/statements.h" #include "magic_enum.hpp" +/** @internal */ namespace ecsact::parse::detail::grammar { struct statement_end { static constexpr auto rule = lexy::dsl::lit_c<';'>; From 1ffd720fb13447038403f01356f1a661e76ccb48 Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Wed, 19 Oct 2022 13:42:47 -0700 Subject: [PATCH 2/4] internal file --- ecsact/detail/grammar.hh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/ecsact/detail/grammar.hh b/ecsact/detail/grammar.hh index f83db09..18cb162 100644 --- a/ecsact/detail/grammar.hh +++ b/ecsact/detail/grammar.hh @@ -1,3 +1,5 @@ +//! @internal + #pragma once #include @@ -8,7 +10,6 @@ #include "ecsact/parse/statements.h" #include "magic_enum.hpp" -/** @internal */ namespace ecsact::parse::detail::grammar { struct statement_end { static constexpr auto rule = lexy::dsl::lit_c<';'>; From fa698b444fbeca019a455780123be688366bb804 Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Wed, 19 Oct 2022 13:44:57 -0700 Subject: [PATCH 3/4] internal field statement --- ecsact/detail/grammar.hh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/ecsact/detail/grammar.hh b/ecsact/detail/grammar.hh index 18cb162..0683071 100644 --- a/ecsact/detail/grammar.hh +++ b/ecsact/detail/grammar.hh @@ -1,5 +1,3 @@ -//! @internal - #pragma once #include @@ -368,6 +366,7 @@ namespace ecsact::parse::detail::grammar { static constexpr auto value = lexy::forward; }; + //! @internal struct field_statement { static constexpr auto name() { return "field statement"; } From 64c2e3bd63bc604dfed99afc095ba3e6726539a3 Mon Sep 17 00:00:00 2001 From: Ezekiel Warren Date: Wed, 19 Oct 2022 13:46:31 -0700 Subject: [PATCH 4/4] internal field statement --- ecsact/detail/grammar.hh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ecsact/detail/grammar.hh b/ecsact/detail/grammar.hh index 0683071..9ebfe28 100644 --- a/ecsact/detail/grammar.hh +++ b/ecsact/detail/grammar.hh @@ -366,7 +366,7 @@ namespace ecsact::parse::detail::grammar { static constexpr auto value = lexy::forward; }; - //! @internal + /** @internal */ struct field_statement { static constexpr auto name() { return "field statement"; }