Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | regex: Fixed warnings about unused parameter values. | Sebastian Bauer | 2013-01-11 | 1 | -4/+4 |
| | | | | | | | | | | 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 Bauer | 2013-01-11 | 1 | -2/+3 |
| | |||||
* | regex: fix sign warnings | Carlos Martín Nieto | 2012-02-18 | 1 | -3/+6 |
| | |||||
* | regex: The world uses utf-8 | Carlos Martín Nieto | 2012-02-18 | 1 | -32/+1 |
| | |||||
* | Add POSIX regex sources when needed | Carlos Martín Nieto | 2012-02-17 | 1 | -0/+3884 |
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. |