Skip to content

Commit 25aee1f

Browse files
committed
Fix typo.
1 parent c34f2a2 commit 25aee1f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

include/tao/pegtl/demangle.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ namespace TAO_PEGTL_NAMESPACE
9090
static_assert( internal::dependent_true< T > && ( begin != std::string_view::npos ) );
9191
constexpr auto tmp = sv.substr( begin + 2 );
9292
constexpr auto end = tmp.rfind( ';' );
93-
static_assert( internal::dependen_true< T > && ( end != std::string_view::npos ) );
93+
static_assert( internal::dependent_true< T > && ( end != std::string_view::npos ) );
9494
return tmp.substr( 0, end );
9595
}
9696

@@ -117,7 +117,7 @@ namespace TAO_PEGTL_NAMESPACE
117117
{
118118
constexpr std::string_view sv = __FUNCSIG__;
119119
constexpr auto begin = sv.find( "demangle<" );
120-
static_assert( internal::dependen_true< T > && ( begin != std::string_view::npos ) );
120+
static_assert( internal::dependent_true< T > && ( begin != std::string_view::npos ) );
121121
constexpr auto tmp = sv.substr( begin + 9 );
122122
constexpr auto end = tmp.rfind( '>' );
123123
static_assert( internal::dependent_true< T > && ( end != std::string_view::npos ) );

0 commit comments

Comments
 (0)