This repository has been archived by the owner on Jul 6, 2018. It is now read-only.
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Currently when building the following compiler warning is issued: ../src/node_http2_core.cc:204:16: warning: comparison of integers of different signs: 'ssize_t' (aka 'long') and 'size_t' (aka 'unsigned long') [-Wsign-compare] if (numchars < length) { ~~~~~~~~ ^ ~~~~~~ 1 warning generated. numchars is checked to make sure it is greater than 0 so it should be safe to cast it to size_t. PR-URL: #172 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information