Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Documented changes to pcre.h
  • Loading branch information
nickgammon committed May 29, 2013
1 parent cedd1a8 commit f12ef5b
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion pcre/readme.txt
Expand Up @@ -78,4 +78,22 @@ to the start of the file.

#pragma warning( disable : 4146) // unary minus operator applied to unsigned type, result still unsigned

to the start of the file.
to the start of the file.



9. In pcre.h at lines 309 to 313 change:

struct real_pcre; /* declaration; the definition is private */
typedef struct real_pcre pcre;

struct real_pcre16; /* declaration; the definition is private */
typedef struct real_pcre16 pcre16;

to:

struct real_pcre8_or_16; /* declaration; the definition is private */
typedef struct real_pcre8_or_16 pcre;

struct real_pcre8_or_16; /* declaration; the definition is private */
typedef struct real_pcre8_or_16 pcre16;

0 comments on commit f12ef5b

Please sign in to comment.