Great Symbol Renaming: types.

This commit is contained in:
Meredith L. Patterson 2012-05-26 13:23:00 +02:00
parent 55d0ace87b
commit 5163f002cf
5 changed files with 77 additions and 77 deletions

View file

@ -51,7 +51,7 @@ const parser_t* init_domain() {
* ... but this is easier and equivalent
*/
const parser_t *subdomain = sepBy1(label, ch('.'));
const HParser *subdomain = sepBy1(label, ch('.'));
domain = choice(subdomain,
ch(' '),
@ -60,8 +60,8 @@ const parser_t* init_domain() {
return domain;
}
const parser_t* init_character_string() {
static const parser_t *cstr = NULL;
const HParser* init_character_string() {
static const HParser *cstr = NULL;
if (cstr)
return cstr;