• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 ///////////////////////////////////////////////////////////////
2 //  Copyright 2015 John Maddock. Distributed under the Boost
3 //  Software License, Version 1.0. (See accompanying file
4 //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_
5 //
6 
7 #define PCRE2_STATIC
8 #define PCRE2_CODE_UNIT_WIDTH 8
9 
10 #include <pcre2.h>
11 
main()12 int main()
13 {
14    pcre2_match_data* pdata = pcre2_match_data_create(30, NULL);
15    pcre2_match_data_free(pdata);
16    return 0;
17 }
18