summaryrefslogtreecommitdiff
path: root/deps/regex/regex_internal.c
Commit message (Collapse)AuthorAgeFilesLines
* Several warnings detected by static code analyzer fixedArkadiy Shapkin2013-03-181-1/+1
| | | | | | | Implicit type conversion argument of function to size_t type Suspicious sequence of types castings: size_t -> int -> size_t Consider reviewing the expression of the 'A = B == C' kind. The expression is calculated as following: 'A = (B == C)' Unsigned type is never < 0
* Add POSIX regex sources when neededCarlos Martín Nieto2012-02-171-0/+1744
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.