pcre.cpp 449 B

1234567891011121314151617
  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. #define PCRE2_STATIC
  7. #define PCRE2_CODE_UNIT_WIDTH 8
  8. #include <pcre2.h>
  9. int main()
  10. {
  11. pcre2_match_data* pdata = pcre2_match_data_create(30, NULL);
  12. pcre2_match_data_free(pdata);
  13. return 0;
  14. }