~ubuntu-branches/ubuntu/oneiric/bombono-dvd/oneiric

« back to all changes in this revision

Viewing changes to libs/boost-lib/boost/regex/v4/error_type.hpp

  • Committer: Bazaar Package Importer
  • Author(s): Alessio Treglia
  • Date: 2010-11-04 11:46:25 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20101104114625-2tfaxma74eqggp5r
Tags: 0.8.0-0ubuntu1
* New upstream release (LP: #670193).
* Refresh 02_sparc.diff patch.
* Replace 05-boost_filesystem-link.patch with 05-fix_boost.patch, it fixes
  build failure with Boost <= 1.44.
* Bump Standards.

Show diffs side-by-side

added added

removed removed

Lines of Context:
28
28
 
29
29
enum error_type{
30
30
 
31
 
   error_ok = 0,         // not used
32
 
   error_no_match = 1,   // not used
 
31
   error_ok = 0,         /* not used */
 
32
   error_no_match = 1,   /* not used */
33
33
   error_bad_pattern = 2,
34
34
   error_collate = 3,
35
35
   error_ctype = 4,
42
42
   error_range = 11,
43
43
   error_space = 12,
44
44
   error_badrepeat = 13,
45
 
   error_end = 14,    // not used
 
45
   error_end = 14,    /* not used */
46
46
   error_size = 15,
47
 
   error_right_paren = 16,  // not used
 
47
   error_right_paren = 16,  /* not used */
48
48
   error_empty = 17,
49
49
   error_complexity = 18,
50
50
   error_stack = 19,
51
 
   error_unknown = 20
 
51
   error_perl_extension = 20,
 
52
   error_unknown = 21
52
53
};
53
54
 
54
55
}
55
56
}
56
 
#endif // __cplusplus
 
57
#endif /* __cplusplus */
57
58
 
58
59
#endif