summaryrefslogtreecommitdiff
path: root/deps/regex/regex_internal.h
Commit message (Collapse)AuthorAgeFilesLines
* regex: Proper define for this thingVicent Marti2013-01-111-5/+5
|
* regex: Fixed warnings about unused parameter values.Sebastian Bauer2013-01-111-0/+8
| | | | | | | | | | There are different solutions to the problem. In this change, we define an UNUSED macro that maps to __attribute__((unused)) when compiling with gcc. Otherwise it is a NOOP. We apply this macro in all function headers for each parameter value that is not used within the function body. The change is local to regex.
* regex: Fixed several warnings about signed/unsigned conversions.Sebastian Bauer2013-01-111-2/+3
|
* Remove use of English expletivesMartin Woodward2012-11-231-1/+1
| | | | | | Remove words such as fuck, crap, shit etc. Remove other potentially offensive words from comments. Tidy up other geopolicital terms in comments.
* Add POSIX regex sources when neededCarlos Martín Nieto2012-02-171-0/+810
Windows doesn't support POSIX regex, so we need to include it ourselves. The sources come from git, which in turn took them from gawk.