Skip to content
Snippets Groups Projects
Commit 24c123b3 authored by Stéphane Del Pino's avatar Stéphane Del Pino
Browse files

git subrepo pull packages/PEGTL

subrepo:
  subdir:   "packages/PEGTL"
  merged:   "1d7ede313"
upstream:
  origin:   "git@github.com:taocpp/PEGTL.git"
  branch:   "master"
  commit:   "1d7ede313"
git-subrepo:
  version:  "0.4.0"
  origin:   "git@github.com:ingydotnet/git-subrepo.git"
  commit:   "5d6aba9"
parent 15fe2ba7
No related branches found
No related tags found
1 merge request!37Feature/language
...@@ -6,7 +6,7 @@ ...@@ -6,7 +6,7 @@
[subrepo] [subrepo]
remote = git@github.com:taocpp/PEGTL.git remote = git@github.com:taocpp/PEGTL.git
branch = master branch = master
commit = cfd5e55d73a2a64942b42226e0e919dc36ecdce5 commit = 1d7ede3134b8b4864140dc1a5be494ac570a309e
parent = 1f2337bcfdf66482f57fe7648cb2b6bff987a23f parent = 15fe2ba73eafb183b53730d51702665841edd32f
cmdver = 0.4.0 cmdver = 0.4.0
method = merge method = merge
...@@ -46,7 +46,7 @@ namespace TAO_PEGTL_NAMESPACE::internal ...@@ -46,7 +46,7 @@ namespace TAO_PEGTL_NAMESPACE::internal
constexpr const std::string_view sv = __PRETTY_FUNCTION__; constexpr const std::string_view sv = __PRETTY_FUNCTION__;
constexpr const auto begin = find< '=' >( sv.data(), sv.size() ); constexpr const auto begin = find< '=' >( sv.data(), sv.size() );
static_assert( begin != nullptr ); static_assert( begin != nullptr );
return { begin + 2, sv.end() - begin - 3 }; return { begin + 2, sv.data() + sv.size() - begin - 3 };
} }
#endif #endif
......
...@@ -15,7 +15,7 @@ namespace TAO_PEGTL_NAMESPACE ...@@ -15,7 +15,7 @@ namespace TAO_PEGTL_NAMESPACE
void unit_test() void unit_test()
{ {
#if defined( __GNUC__ ) && ( __GNUC__ == 9 ) || ( __GNUC_MINOR__ == 1 ) #if defined( __GNUC__ ) && ( __GNUC__ == 9 ) || ( __GNUC_MINOR__ <= 2 )
// see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91155 // see https://gcc.gnu.org/bugzilla/show_bug.cgi?id=91155
test< int >( "i" ); test< int >( "i" );
test< double >( "d" ); test< double >( "d" );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment