summaryrefslogtreecommitdiffstats
path: root/include/msvc_compat/strings.h
Commit message (Collapse)AuthorAgeFilesLines
* Remove extraneous parens around return arguments.Jason Evans2017-01-211-8/+8
| | | | This resolves #540.
* Update brace style.Jason Evans2017-01-211-10/+10
| | | | | | | Add braces around single-line blocks, and remove line breaks before function-opening braces. This resolves #537.
* Remove leading blank lines from function bodies.Jason Evans2017-01-131-1/+0
| | | | This resolves #535.
* Fix Windows build issuesDmitri Smirnov2016-02-241-0/+30
| | | | This resolves #333.
* Fix MinGW-related portability issues.Jason Evans2015-07-231-2/+8
| | | | | | | | | | | | | Create and use FMT* macros that are equivalent to the PRI* macros that inttypes.h defines. This allows uniform use of the Unix-specific format specifiers, e.g. "%zu", as well as avoiding Windows-specific definitions of e.g. PRIu64. Add ffs()/ffsl() support for compiling with gcc. Extract compatibility definitions of ENOENT, EINVAL, EAGAIN, EPERM, ENOMEM, and ENORANGE into include/msvc_compat/windows_extra.h and use the file for tests as well as for core jemalloc code.
* Add support for MSVCMike Hommey2012-05-011-0/+23
Tested with MSVC 8 32 and 64 bits.