Commit 463c887
committed
Fix casting uint64_t to size_t for 32-bit builds
This fixes the following warning:
```
D:\cpp-httplib\httplib.h(8002,61): warning C4244: 'argument': conversion from 'uint64_t' to 'const _Ty', possible loss of data
D:\cpp-httplib\httplib.h(8002,61): warning C4244: with
D:\cpp-httplib\httplib.h(8002,61): warning C4244: [
D:\cpp-httplib\httplib.h(8002,61): warning C4244: _Ty=size_t
D:\cpp-httplib\httplib.h(8002,61): warning C4244: ]
(compiling source file '../src/test/HttpRequestTest.cpp')
```1 parent 4f5b003 commit 463c887
1 file changed
+2
-2
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
7999 | 7999 | | |
8000 | 8000 | | |
8001 | 8001 | | |
8002 | | - | |
8003 | | - | |
| 8002 | + | |
| 8003 | + | |
8004 | 8004 | | |
8005 | 8005 | | |
8006 | 8006 | | |
| |||
0 commit comments