New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Building under Windows 7 fails #79
Comments
|
Progress-- using Microsoft Visual Studio 2013, x64 Cross Tools command builds jiffy with errors All but 5 test-cases pass, but the library seems to work despite the failed test-cases (for my application). |
|
I've got zero experience doing windows dev, but if those tests are failing then I'd be super suspect on whether its a valid build. For instance, array_open is checking that a bare left square bracket is an error. Failing that test is pretty much failing as a JSON library. The pasted errors seem not terrible but with a failing test suite I'm gonna say something is still broken. |
|
Here is what is really weird: The json:decode/0 of the bogus_char test case throws {91, invalid_literal}, but the test case expects {97, invalid_literal}, but my build returns {91, invalid_literal} Does that give you any thoughts? Maybe the the above details give some insight or thoughts for me that I can persue? |
|
I build jiffy using mostly the same build environment as you - VS2013 x64 Community Edition with the latest patch (5). I don't have any test failures. My build log shows most of the same warnings as yours (which we should clean up at some point) but all 378 eunit tests pass. |
|
Closing due to inactivity |
Using Visual Studio 2013 as my tool chain, when I try 'rebar compile' I receive a ton of erros although the compile completes. The result, however, is not usable - NIF will not load
==> jiffy (compile)
Compiled src/jiffy.erl
Compiled src/jiffy_utf8.erl
Compiling c_src/decoder.c
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
decoder.c
c:\Program Files\erl6.3\erts-6.3\include\erl_nif.h(163) : warning C4820: '' : '4' bytes padding added after data member 'ref_bin'
c_src/decoder.c(65) : warning C4820: '' : '4' bytes padding added after data member 'st_top'
c_src/decoder.c(126) : warning C4100: 'env' : unreferenced formal parameter
c_src/decoder.c(755) : warning C4018: '<' : signed/unsigned mismatch
c_src/decoder.c(804) : warning C4018: '>=' : signed/unsigned mismatch
Compiling c_src/encoder.c
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
encoder.c
c:\Program Files\erl6.3\erts-6.3\include\erl_nif.h(163) : warning C4820: '' : '4' bytes padding added after data member 'ref_bin'
c_src/encoder.c(109) : warning C4100: 'env' : unreferenced formal parameter
c_src/encoder.c(272) : warning C4018: '<' : signed/unsigned mismatch
c_src/encoder.c(318) : warning C4018: '<' : signed/unsigned mismatch
c_src/encoder.c(396) : warning C4996: '_snprintf': This function or variable may be unsafe. Consider using _snprintf_s instead. To disable deprecation, use _CRT_SECURE_NO_WARNINGS. See online help for details.
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdio.h(346) : see declaration of '_snprintf'
c_src/encoder.c(468) : warning C4127: conditional expression is constant
c_src/encoder.c(476) : warning C4127: conditional expression is constant
c_src/encoder.c(487) : warning C4127: conditional expression is constant
c_src/encoder.c(495) : warning C4127: conditional expression is constant
c_src/encoder.c(512) : warning C4127: conditional expression is constant
Compiling c_src/jiffy.c
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
jiffy.c
c:\Program Files\erl6.3\erts-6.3\include\erl_nif.h(163) : warning C4820: '' : '4' bytes padding added after data member 'ref_bin'
c_src/jiffy.c(7) : warning C4100: 'info' : unreferenced formal parameter
c_src/jiffy.c(60) : warning C4100: 'info' : unreferenced formal parameter
c_src/jiffy.c(60) : warning C4100: 'priv' : unreferenced formal parameter
c_src/jiffy.c(60) : warning C4100: 'env' : unreferenced formal parameter
c_src/jiffy.c(66) : warning C4100: 'old_priv' : unreferenced formal parameter
c_src/jiffy.c(72) : warning C4100: 'env' : unreferenced formal parameter
c_src/jiffy.c(86) : warning C4013: 'memcpy' undefined; assuming extern returning int
Compiling c_src/utf8.c
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
utf8.c
c:\Program Files\erl6.3\erts-6.3\include\erl_nif.h(163) : warning C4820: '' : '4' bytes padding added after data member 'ref_bin'
c_src/utf8.c(112) : warning C4018: '>' : signed/unsigned mismatch
c_src/utf8.c(198) : warning C4244: '=' : conversion from 'int' to 'unsigned char', possible loss of data
c_src/utf8.c(203) : warning C4244: '=' : conversion from 'int' to 'unsigned char', possible loss of data
c_src/utf8.c(211) : warning C4244: '=' : conversion from 'int' to 'unsigned char', possible loss of data
Compiling c_src/util.c
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
util.c
c:\Program Files\erl6.3\erts-6.3\include\erl_nif.h(163) : warning C4820: '' : '4' bytes padding added after data member 'ref_bin'
Compiling c_src/doubles.cc
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
doubles.cc
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(237) : warning C4365: 'argument' : conversion from 'const int' to 'size_t', signed/unsigned mismatch
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion/double-conversion.h(372) : warning C4820: 'double_conversion::DoubleToStringConverter' : '3' bytes padding added after data member 'double_conversion::DoubleToStringConverter::exponent_character_'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion/double-conversion.h(521) : warning C4820: 'double_conversion::StringToDoubleConverter' : '4' bytes padding added after data member 'double_conversion::StringToDoubleConverter::flags_'
c_src/doubles.cc(20) : warning C4365: 'argument' : conversion from 'size_t' to 'int', signed/unsigned mismatch
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(497) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(501) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(505) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(509) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(130) : warning C4514: 'strnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(221) : warning C4514: 'strchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(223) : warning C4514: 'strpbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(225) : warning C4514: 'strrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(227) : warning C4514: 'strstr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(232) : warning C4514: 'memchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(305) : warning C4514: 'wcsnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(382) : warning C4514: 'wcschr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(384) : warning C4514: 'wcspbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(386) : warning C4514: 'wcsrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(390) : warning C4514: 'wcsstr' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(206) : warning C4514: 'double_conversion::StringBuilder::size' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(215) : warning C4514: 'double_conversion::StringBuilder::Reset' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(228) : warning C4514: 'double_conversion::StringBuilder::AddString' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(244) : warning C4514: 'double_conversion::StringBuilder::AddPadding' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion/double-conversion.h(162) : warning C4514: 'double_conversion::DoubleToStringConverter::ToShortestSingle' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion/double-conversion.h(486) : warning C4514: 'double_conversion::StringToDoubleConverter::StringToDoubleConverter' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion/double-conversion.h(503) : warning C4514: 'double_conversion::StringToDoubleConverter::StringToDouble' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion/double-conversion.h(512) : warning C4514: 'double_conversion::StringToDoubleConverter::StringToFloat' : unreferenced inline function has been removed
Compiling c_src/double-conversion/bignum-dtoa.cc
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
bignum-dtoa.cc
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(237) : warning C4365: 'argument' : conversion from 'const int' to 'size_t', signed/unsigned mismatch
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(114) : warning C4820: 'double_conversion::DiyFp' : '4' bytes padding added after data member 'double_conversion::DiyFp::e_'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(259) : warning C4512: 'double_conversion::Double' : assignment operator could not be generated
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(42) : see declaration of 'double_conversion::Double'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(394) : warning C4512: 'double_conversion::Single' : assignment operator could not be generated
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(261) : see declaration of 'double_conversion::Single'
c_src/double-conversion/bignum-dtoa.cc(195) : warning C4127: conditional expression is constant
c_src/double-conversion/bignum-dtoa.cc(201) : warning C4244: '=' : conversion from 'int' to 'char', possible loss of data
c_src/double-conversion/bignum-dtoa.cc(293) : warning C4244: '=' : conversion from 'int' to 'char', possible loss of data
c_src/double-conversion/bignum-dtoa.cc(303) : warning C4244: '=' : conversion from 'int' to 'char', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(304) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(309) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(314) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(319) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(324) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(329) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(334) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(339) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(344) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(555) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(823) : warning C4514: '_chgsignl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(830) : warning C4514: '_copysignl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(884) : warning C4514: '_hypotl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1025) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1027) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1029) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1031) : warning C4514: 'acos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1033) : warning C4514: 'acosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1035) : warning C4514: 'asin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1037) : warning C4514: 'asinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1039) : warning C4514: 'atan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1041) : warning C4514: 'atanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1043) : warning C4514: 'atan2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1045) : warning C4514: 'cbrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1047) : warning C4514: 'ceil' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1049) : warning C4514: 'copysign' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1051) : warning C4514: 'cos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1053) : warning C4514: 'cosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1055) : warning C4514: 'erf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1057) : warning C4514: 'erfc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1059) : warning C4514: 'exp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1061) : warning C4514: 'exp2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1063) : warning C4514: 'expm1' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1065) : warning C4514: 'fabs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1067) : warning C4514: 'fdim' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1069) : warning C4514: 'floor' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1071) : warning C4514: 'fma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1073) : warning C4514: 'fmax' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1075) : warning C4514: 'fmin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1077) : warning C4514: 'fmod' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1079) : warning C4514: 'frexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1081) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1083) : warning C4514: 'ilogb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1085) : warning C4514: 'ldexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1087) : warning C4514: 'lgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1089) : warning C4514: 'llrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1091) : warning C4514: 'llround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1093) : warning C4514: 'log' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1095) : warning C4514: 'log10' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1097) : warning C4514: 'log1p' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1099) : warning C4514: 'log2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1101) : warning C4514: 'logb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1103) : warning C4514: 'lrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1105) : warning C4514: 'lround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1107) : warning C4514: 'modf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1109) : warning C4514: 'nearbyint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1111) : warning C4514: 'nextafter' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1113) : warning C4514: 'nexttoward' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1115) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1117) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1119) : warning C4514: 'remainder' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1121) : warning C4514: 'remquo' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1123) : warning C4514: 'rint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1125) : warning C4514: 'round' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1127) : warning C4514: 'scalbln' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1129) : warning C4514: 'scalbn' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1131) : warning C4514: 'sin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1133) : warning C4514: 'sinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1135) : warning C4514: 'sqrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1137) : warning C4514: 'tan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1139) : warning C4514: 'tanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1141) : warning C4514: 'tgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1143) : warning C4514: 'trunc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1145) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1147) : warning C4514: 'acos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1149) : warning C4514: 'acosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1151) : warning C4514: 'asin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1153) : warning C4514: 'asinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1155) : warning C4514: 'atan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1157) : warning C4514: 'atanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1159) : warning C4514: 'atan2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1161) : warning C4514: 'cbrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1163) : warning C4514: 'ceil' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1165) : warning C4514: 'copysign' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1167) : warning C4514: 'cos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1169) : warning C4514: 'cosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1171) : warning C4514: 'erf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1173) : warning C4514: 'erfc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1175) : warning C4514: 'exp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1177) : warning C4514: 'exp2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1179) : warning C4514: 'expm1' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1181) : warning C4514: 'fabs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1183) : warning C4514: 'fdim' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1185) : warning C4514: 'floor' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1187) : warning C4514: 'fma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1189) : warning C4514: 'fmax' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1191) : warning C4514: 'fmin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1193) : warning C4514: 'fmod' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1195) : warning C4514: 'frexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1197) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1199) : warning C4514: 'ilogb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1201) : warning C4514: 'ldexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1203) : warning C4514: 'lgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1205) : warning C4514: 'llrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1207) : warning C4514: 'llround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1209) : warning C4514: 'log' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1211) : warning C4514: 'log10' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1213) : warning C4514: 'log1p' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1215) : warning C4514: 'log2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1217) : warning C4514: 'logb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1219) : warning C4514: 'lrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1221) : warning C4514: 'lround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1223) : warning C4514: 'modf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1225) : warning C4514: 'nearbyint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1227) : warning C4514: 'nextafter' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1229) : warning C4514: 'nexttoward' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1231) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1233) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1235) : warning C4514: 'remainder' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1237) : warning C4514: 'remquo' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1239) : warning C4514: 'rint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1241) : warning C4514: 'round' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1243) : warning C4514: 'scalbln' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1245) : warning C4514: 'scalbn' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1247) : warning C4514: 'sin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1249) : warning C4514: 'sinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1251) : warning C4514: 'sqrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1253) : warning C4514: 'tan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1255) : warning C4514: 'tanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1257) : warning C4514: 'tgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1259) : warning C4514: 'trunc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(497) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(501) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(505) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(509) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(130) : warning C4514: 'strnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(221) : warning C4514: 'strchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(223) : warning C4514: 'strpbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(225) : warning C4514: 'strrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(227) : warning C4514: 'strstr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(232) : warning C4514: 'memchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(305) : warning C4514: 'wcsnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(382) : warning C4514: 'wcschr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(384) : warning C4514: 'wcspbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(386) : warning C4514: 'wcsrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(390) : warning C4514: 'wcsstr' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(201) : warning C4514: 'double_conversion::StringBuilder::StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(204) : warning C4514: 'double_conversion::StringBuilder::~StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(206) : warning C4514: 'double_conversion::StringBuilder::size' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(209) : warning C4514: 'double_conversion::StringBuilder::position' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(215) : warning C4514: 'double_conversion::StringBuilder::Reset' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(228) : warning C4514: 'double_conversion::StringBuilder::AddString' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(244) : warning C4514: 'double_conversion::StringBuilder::AddPadding' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(89) : warning C4514: 'double_conversion::Bignum::PlusEqual' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(93) : warning C4514: 'double_conversion::Bignum::PlusLessEqual' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(97) : warning C4514: 'double_conversion::Bignum::PlusLess' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(114) : warning C4514: 'double_conversion::Bignum::EnsureCapacity' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(128) : warning C4514: 'double_conversion::Bignum::BigitLength' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(60) : warning C4514: 'double_conversion::DiyFp::Minus' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(71) : warning C4514: 'double_conversion::DiyFp::Times' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(51) : warning C4514: 'double_conversion::Double::Double' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(54) : warning C4514: 'double_conversion::Double::Double' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(66) : warning C4514: 'double_conversion::Double::AsNormalizedDiyFp' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(88) : warning C4514: 'double_conversion::Double::NextDouble' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(101) : warning C4514: 'double_conversion::Double::PreviousDouble' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(143) : warning C4514: 'double_conversion::Double::IsNan' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(149) : warning C4514: 'double_conversion::Double::IsInfinite' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(162) : warning C4514: 'double_conversion::Double::UpperBoundary' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(171) : warning C4514: 'double_conversion::Double::NormalizedBoundaries' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(208) : warning C4514: 'double_conversion::Double::SignificandSizeForOrderOfMagnitude' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(220) : warning C4514: 'double_conversion::Double::NaN' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(270) : warning C4514: 'double_conversion::Single::Single' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(319) : warning C4514: 'double_conversion::Single::IsNan' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(325) : warning C4514: 'double_conversion::Single::IsInfinite' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(340) : warning C4514: 'double_conversion::Single::NormalizedBoundaries' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(358) : warning C4514: 'double_conversion::Single::UpperBoundary' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(378) : warning C4514: 'double_conversion::Single::Infinity' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(382) : warning C4514: 'double_conversion::Single::NaN' : unreferenced inline function has been removed
Compiling c_src/double-conversion/bignum.cc
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
bignum.cc
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(237) : warning C4365: 'argument' : conversion from 'const int' to 'size_t', signed/unsigned mismatch
c_src/double-conversion/bignum.cc(510) : warning C4242: '+=' : conversion from 'double_conversion::Bignum::Chunk' to 'uint16_t', possible loss of data
c_src/double-conversion/bignum.cc(511) : warning C4365: 'argument' : conversion from 'double_conversion::Bignum::Chunk' to 'int', signed/unsigned mismatch
c_src/double-conversion/bignum.cc(524) : warning C4365: 'initializing' : conversion from 'double_conversion::Bignum::Chunk' to 'int', signed/unsigned mismatch
c_src/double-conversion/bignum.cc(526) : warning C4242: '+=' : conversion from 'int' to 'uint16_t', possible loss of data
c_src/double-conversion/bignum.cc(531) : warning C4365: 'initializing' : conversion from 'double_conversion::Bignum::Chunk' to 'int', signed/unsigned mismatch
c_src/double-conversion/bignum.cc(532) : warning C4242: '+=' : conversion from 'int' to 'uint16_t', possible loss of data
c_src/double-conversion/bignum.cc(563) : warning C4244: 'return' : conversion from 'int' to 'char', possible loss of data
c_src/double-conversion/bignum.cc(564) : warning C4244: 'return' : conversion from 'int' to 'char', possible loss of data
c_src/double-conversion/bignum.cc(594) : warning C4365: 'argument' : conversion from 'double_conversion::Bignum::Chunk' to 'int', signed/unsigned mismatch
c_src/double-conversion/bignum.cc(601) : warning C4365: 'argument' : conversion from 'double_conversion::Bignum::Chunk' to 'int', signed/unsigned mismatch
c_src/double-conversion/bignum.cc(42) : warning C4100: 'value' : unreferenced formal parameter
c_src/double-conversion/bignum.cc(48) : see reference to function template instantiation 'int double_conversion::BitSize<uint16_t>(S)' being compiled
with
[
S=uint16_t
]
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(497) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(501) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(505) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(509) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(130) : warning C4514: 'strnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(221) : warning C4514: 'strchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(223) : warning C4514: 'strpbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(225) : warning C4514: 'strrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(227) : warning C4514: 'strstr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(232) : warning C4514: 'memchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(305) : warning C4514: 'wcsnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(382) : warning C4514: 'wcschr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(384) : warning C4514: 'wcspbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(386) : warning C4514: 'wcsrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(390) : warning C4514: 'wcsstr' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(201) : warning C4514: 'double_conversion::StringBuilder::StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(204) : warning C4514: 'double_conversion::StringBuilder::~StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(206) : warning C4514: 'double_conversion::StringBuilder::size' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(209) : warning C4514: 'double_conversion::StringBuilder::position' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(215) : warning C4514: 'double_conversion::StringBuilder::Reset' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(228) : warning C4514: 'double_conversion::StringBuilder::AddString' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(244) : warning C4514: 'double_conversion::StringBuilder::AddPadding' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(63) : warning C4514: 'double_conversion::Bignum::Times10' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(77) : warning C4514: 'double_conversion::Bignum::Equal' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(83) : warning C4514: 'double_conversion::Bignum::Less' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(89) : warning C4514: 'double_conversion::Bignum::PlusEqual' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(93) : warning C4514: 'double_conversion::Bignum::PlusLessEqual' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(97) : warning C4514: 'double_conversion::Bignum::PlusLess' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.cc(127) : warning C4702: unreachable code
Compiling c_src/double-conversion/cached-powers.cc
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
cached-powers.cc
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(237) : warning C4365: 'argument' : conversion from 'const int' to 'size_t', signed/unsigned mismatch
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(114) : warning C4820: 'double_conversion::DiyFp' : '4' bytes padding added after data member 'double_conversion::DiyFp::e_'
c_src/double-conversion/cached-powers.cc(42) : warning C4820: 'double_conversion::CachedPower' : '4' bytes padding added after data member 'double_conversion::CachedPower::decimal_exponent'
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(304) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(309) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(314) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(319) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(324) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(329) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(334) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(339) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(344) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(555) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(823) : warning C4514: '_chgsignl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(830) : warning C4514: '_copysignl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(884) : warning C4514: '_hypotl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1025) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1027) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1029) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1031) : warning C4514: 'acos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1033) : warning C4514: 'acosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1035) : warning C4514: 'asin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1037) : warning C4514: 'asinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1039) : warning C4514: 'atan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1041) : warning C4514: 'atanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1043) : warning C4514: 'atan2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1045) : warning C4514: 'cbrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1047) : warning C4514: 'ceil' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1049) : warning C4514: 'copysign' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1051) : warning C4514: 'cos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1053) : warning C4514: 'cosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1055) : warning C4514: 'erf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1057) : warning C4514: 'erfc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1059) : warning C4514: 'exp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1061) : warning C4514: 'exp2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1063) : warning C4514: 'expm1' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1065) : warning C4514: 'fabs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1067) : warning C4514: 'fdim' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1069) : warning C4514: 'floor' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1071) : warning C4514: 'fma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1073) : warning C4514: 'fmax' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1075) : warning C4514: 'fmin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1077) : warning C4514: 'fmod' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1079) : warning C4514: 'frexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1081) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1083) : warning C4514: 'ilogb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1085) : warning C4514: 'ldexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1087) : warning C4514: 'lgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1089) : warning C4514: 'llrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1091) : warning C4514: 'llround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1093) : warning C4514: 'log' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1095) : warning C4514: 'log10' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1097) : warning C4514: 'log1p' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1099) : warning C4514: 'log2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1101) : warning C4514: 'logb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1103) : warning C4514: 'lrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1105) : warning C4514: 'lround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1107) : warning C4514: 'modf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1109) : warning C4514: 'nearbyint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1111) : warning C4514: 'nextafter' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1113) : warning C4514: 'nexttoward' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1115) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1117) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1119) : warning C4514: 'remainder' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1121) : warning C4514: 'remquo' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1123) : warning C4514: 'rint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1125) : warning C4514: 'round' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1127) : warning C4514: 'scalbln' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1129) : warning C4514: 'scalbn' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1131) : warning C4514: 'sin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1133) : warning C4514: 'sinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1135) : warning C4514: 'sqrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1137) : warning C4514: 'tan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1139) : warning C4514: 'tanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1141) : warning C4514: 'tgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1143) : warning C4514: 'trunc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1145) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1147) : warning C4514: 'acos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1149) : warning C4514: 'acosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1151) : warning C4514: 'asin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1153) : warning C4514: 'asinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1155) : warning C4514: 'atan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1157) : warning C4514: 'atanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1159) : warning C4514: 'atan2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1161) : warning C4514: 'cbrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1163) : warning C4514: 'ceil' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1165) : warning C4514: 'copysign' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1167) : warning C4514: 'cos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1169) : warning C4514: 'cosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1171) : warning C4514: 'erf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1173) : warning C4514: 'erfc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1175) : warning C4514: 'exp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1177) : warning C4514: 'exp2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1179) : warning C4514: 'expm1' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1181) : warning C4514: 'fabs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1183) : warning C4514: 'fdim' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1185) : warning C4514: 'floor' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1187) : warning C4514: 'fma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1189) : warning C4514: 'fmax' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1191) : warning C4514: 'fmin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1193) : warning C4514: 'fmod' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1195) : warning C4514: 'frexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1197) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1199) : warning C4514: 'ilogb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1201) : warning C4514: 'ldexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1203) : warning C4514: 'lgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1205) : warning C4514: 'llrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1207) : warning C4514: 'llround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1209) : warning C4514: 'log' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1211) : warning C4514: 'log10' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1213) : warning C4514: 'log1p' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1215) : warning C4514: 'log2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1217) : warning C4514: 'logb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1219) : warning C4514: 'lrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1221) : warning C4514: 'lround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1223) : warning C4514: 'modf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1225) : warning C4514: 'nearbyint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1227) : warning C4514: 'nextafter' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1229) : warning C4514: 'nexttoward' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1231) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1233) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1235) : warning C4514: 'remainder' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1237) : warning C4514: 'remquo' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1239) : warning C4514: 'rint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1241) : warning C4514: 'round' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1243) : warning C4514: 'scalbln' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1245) : warning C4514: 'scalbn' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1247) : warning C4514: 'sin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1249) : warning C4514: 'sinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1251) : warning C4514: 'sqrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1253) : warning C4514: 'tan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1255) : warning C4514: 'tanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1257) : warning C4514: 'tgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1259) : warning C4514: 'trunc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(497) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(501) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(505) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(509) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(130) : warning C4514: 'strnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(221) : warning C4514: 'strchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(223) : warning C4514: 'strpbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(225) : warning C4514: 'strrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(227) : warning C4514: 'strstr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(232) : warning C4514: 'memchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(305) : warning C4514: 'wcsnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(382) : warning C4514: 'wcschr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(384) : warning C4514: 'wcspbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(386) : warning C4514: 'wcsrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(390) : warning C4514: 'wcsstr' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(201) : warning C4514: 'double_conversion::StringBuilder::StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(204) : warning C4514: 'double_conversion::StringBuilder::~StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(206) : warning C4514: 'double_conversion::StringBuilder::size' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(209) : warning C4514: 'double_conversion::StringBuilder::position' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(215) : warning C4514: 'double_conversion::StringBuilder::Reset' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(228) : warning C4514: 'double_conversion::StringBuilder::AddString' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(244) : warning C4514: 'double_conversion::StringBuilder::AddPadding' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(44) : warning C4514: 'double_conversion::DiyFp::DiyFp' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(60) : warning C4514: 'double_conversion::DiyFp::Minus' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(71) : warning C4514: 'double_conversion::DiyFp::Times' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(97) : warning C4514: 'double_conversion::DiyFp::Normalize' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(103) : warning C4514: 'double_conversion::DiyFp::f' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(104) : warning C4514: 'double_conversion::DiyFp::e' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(106) : warning C4514: 'double_conversion::DiyFp::set_f' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(107) : warning C4514: 'double_conversion::DiyFp::set_e' : unreferenced inline function has been removed
Compiling c_src/double-conversion/diy-fp.cc
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
diy-fp.cc
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(237) : warning C4365: 'argument' : conversion from 'const int' to 'size_t', signed/unsigned mismatch
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(114) : warning C4820: 'double_conversion::DiyFp' : '4' bytes padding added after data member 'double_conversion::DiyFp::e_'
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(497) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(501) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(505) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(509) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(130) : warning C4514: 'strnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(221) : warning C4514: 'strchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(223) : warning C4514: 'strpbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(225) : warning C4514: 'strrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(227) : warning C4514: 'strstr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(232) : warning C4514: 'memchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(305) : warning C4514: 'wcsnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(382) : warning C4514: 'wcschr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(384) : warning C4514: 'wcspbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(386) : warning C4514: 'wcsrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(390) : warning C4514: 'wcsstr' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(201) : warning C4514: 'double_conversion::StringBuilder::StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(204) : warning C4514: 'double_conversion::StringBuilder::~StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(206) : warning C4514: 'double_conversion::StringBuilder::size' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(209) : warning C4514: 'double_conversion::StringBuilder::position' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(215) : warning C4514: 'double_conversion::StringBuilder::Reset' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(228) : warning C4514: 'double_conversion::StringBuilder::AddString' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(244) : warning C4514: 'double_conversion::StringBuilder::AddPadding' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(44) : warning C4514: 'double_conversion::DiyFp::DiyFp' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(45) : warning C4514: 'double_conversion::DiyFp::DiyFp' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(60) : warning C4514: 'double_conversion::DiyFp::Minus' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(71) : warning C4514: 'double_conversion::DiyFp::Times' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(97) : warning C4514: 'double_conversion::DiyFp::Normalize' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(103) : warning C4514: 'double_conversion::DiyFp::f' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(104) : warning C4514: 'double_conversion::DiyFp::e' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(106) : warning C4514: 'double_conversion::DiyFp::set_f' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(107) : warning C4514: 'double_conversion::DiyFp::set_e' : unreferenced inline function has been removed
Compiling c_src/double-conversion/double-conversion.cc
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
double-conversion.cc
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(237) : warning C4365: 'argument' : conversion from 'const int' to 'size_t', signed/unsigned mismatch
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\double-conversion.h(372) : warning C4820: 'double_conversion::DoubleToStringConverter' : '3' bytes padding added after data member 'double_conversion::DoubleToStringConverter::exponent_character_'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\double-conversion.h(521) : warning C4820: 'double_conversion::StringToDoubleConverter' : '4' bytes padding added after data member 'double_conversion::StringToDoubleConverter::flags_'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(114) : warning C4820: 'double_conversion::DiyFp' : '4' bytes padding added after data member 'double_conversion::DiyFp::e_'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(259) : warning C4512: 'double_conversion::Double' : assignment operator could not be generated
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(42) : see declaration of 'double_conversion::Double'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(394) : warning C4512: 'double_conversion::Single' : assignment operator could not be generated
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(261) : see declaration of 'double_conversion::Single'
c_src/double-conversion/double-conversion.cc(49) : warning C4640: 'converter' : construction of local static object is not thread-safe
c_src/double-conversion/double-conversion.cc(526) : warning C4127: conditional expression is constant
c_src/double-conversion/double-conversion.cc(700) : see reference to function template instantiation 'double double_conversion::RadixStringToIeee<4>(const char ,const char *,bool,bool,double,bool,const char *)' being compiled
c_src/double-conversion/double-conversion.cc(572) : warning C4365: 'argument' : conversion from 'int64_t' to 'uint64_t', signed/unsigned mismatch
c_src/double-conversion/double-conversion.cc(497) : warning C4127: conditional expression is constant
c_src/double-conversion/double-conversion.cc(865) : see reference to function template instantiation 'double double_conversion::RadixStringToIeee<3>(const char ,const char *,bool,bool,double,bool,const char *)' being compiled
c_src/double-conversion/double-conversion.cc(499) : warning C4127: conditional expression is constant
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(304) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(309) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(314) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(319) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(324) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(329) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(334) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(339) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(344) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(555) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(823) : warning C4514: '_chgsignl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(830) : warning C4514: '_copysignl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(884) : warning C4514: '_hypotl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1025) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1027) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1029) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1031) : warning C4514: 'acos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1033) : warning C4514: 'acosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1035) : warning C4514: 'asin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1037) : warning C4514: 'asinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1039) : warning C4514: 'atan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1041) : warning C4514: 'atanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1043) : warning C4514: 'atan2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1045) : warning C4514: 'cbrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1047) : warning C4514: 'ceil' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1049) : warning C4514: 'copysign' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1051) : warning C4514: 'cos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1053) : warning C4514: 'cosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1055) : warning C4514: 'erf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1057) : warning C4514: 'erfc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1059) : warning C4514: 'exp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1061) : warning C4514: 'exp2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1063) : warning C4514: 'expm1' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1065) : warning C4514: 'fabs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1067) : warning C4514: 'fdim' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1069) : warning C4514: 'floor' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1071) : warning C4514: 'fma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1073) : warning C4514: 'fmax' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1075) : warning C4514: 'fmin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1077) : warning C4514: 'fmod' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1079) : warning C4514: 'frexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1081) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1083) : warning C4514: 'ilogb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1085) : warning C4514: 'ldexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1087) : warning C4514: 'lgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1089) : warning C4514: 'llrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1091) : warning C4514: 'llround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1093) : warning C4514: 'log' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1095) : warning C4514: 'log10' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1097) : warning C4514: 'log1p' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1099) : warning C4514: 'log2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1101) : warning C4514: 'logb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1103) : warning C4514: 'lrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1105) : warning C4514: 'lround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1107) : warning C4514: 'modf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1109) : warning C4514: 'nearbyint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1111) : warning C4514: 'nextafter' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1113) : warning C4514: 'nexttoward' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1115) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1117) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1119) : warning C4514: 'remainder' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1121) : warning C4514: 'remquo' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1123) : warning C4514: 'rint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1125) : warning C4514: 'round' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1127) : warning C4514: 'scalbln' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1129) : warning C4514: 'scalbn' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1131) : warning C4514: 'sin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1133) : warning C4514: 'sinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1135) : warning C4514: 'sqrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1137) : warning C4514: 'tan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1139) : warning C4514: 'tanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1141) : warning C4514: 'tgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1143) : warning C4514: 'trunc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1145) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1147) : warning C4514: 'acos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1149) : warning C4514: 'acosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1151) : warning C4514: 'asin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1153) : warning C4514: 'asinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1155) : warning C4514: 'atan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1157) : warning C4514: 'atanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1159) : warning C4514: 'atan2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1161) : warning C4514: 'cbrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1163) : warning C4514: 'ceil' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1165) : warning C4514: 'copysign' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1167) : warning C4514: 'cos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1169) : warning C4514: 'cosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1171) : warning C4514: 'erf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1173) : warning C4514: 'erfc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1175) : warning C4514: 'exp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1177) : warning C4514: 'exp2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1179) : warning C4514: 'expm1' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1181) : warning C4514: 'fabs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1183) : warning C4514: 'fdim' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1185) : warning C4514: 'floor' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1187) : warning C4514: 'fma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1189) : warning C4514: 'fmax' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1191) : warning C4514: 'fmin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1193) : warning C4514: 'fmod' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1195) : warning C4514: 'frexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1197) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1199) : warning C4514: 'ilogb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1201) : warning C4514: 'ldexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1203) : warning C4514: 'lgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1205) : warning C4514: 'llrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1207) : warning C4514: 'llround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1209) : warning C4514: 'log' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1211) : warning C4514: 'log10' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1213) : warning C4514: 'log1p' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1215) : warning C4514: 'log2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1217) : warning C4514: 'logb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1219) : warning C4514: 'lrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1221) : warning C4514: 'lround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1223) : warning C4514: 'modf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1225) : warning C4514: 'nearbyint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1227) : warning C4514: 'nextafter' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1229) : warning C4514: 'nexttoward' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1231) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1233) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1235) : warning C4514: 'remainder' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1237) : warning C4514: 'remquo' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1239) : warning C4514: 'rint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1241) : warning C4514: 'round' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1243) : warning C4514: 'scalbln' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1245) : warning C4514: 'scalbn' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1247) : warning C4514: 'sin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1249) : warning C4514: 'sinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1251) : warning C4514: 'sqrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1253) : warning C4514: 'tan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1255) : warning C4514: 'tanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1257) : warning C4514: 'tgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1259) : warning C4514: 'trunc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(497) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(501) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(505) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(509) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(130) : warning C4514: 'strnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(221) : warning C4514: 'strchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(223) : warning C4514: 'strpbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(225) : warning C4514: 'strrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(227) : warning C4514: 'strstr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(232) : warning C4514: 'memchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(305) : warning C4514: 'wcsnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(382) : warning C4514: 'wcschr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(384) : warning C4514: 'wcspbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(386) : warning C4514: 'wcsrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(390) : warning C4514: 'wcsstr' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(201) : warning C4514: 'double_conversion::StringBuilder::StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(204) : warning C4514: 'double_conversion::StringBuilder::~StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(206) : warning C4514: 'double_conversion::StringBuilder::size' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(209) : warning C4514: 'double_conversion::StringBuilder::position' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(215) : warning C4514: 'double_conversion::StringBuilder::Reset' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\double-conversion.h(157) : warning C4514: 'double_conversion::DoubleToStringConverter::ToShortest' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\double-conversion.h(162) : warning C4514: 'double_conversion::DoubleToStringConverter::ToShortestSingle' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\double-conversion.h(486) : warning C4514: 'double_conversion::StringToDoubleConverter::StringToDoubleConverter' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\double-conversion.h(503) : warning C4514: 'double_conversion::StringToDoubleConverter::StringToDouble' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\double-conversion.h(512) : warning C4514: 'double_conversion::StringToDoubleConverter::StringToFloat' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(60) : warning C4514: 'double_conversion::DiyFp::Minus' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(71) : warning C4514: 'double_conversion::DiyFp::Times' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(51) : warning C4514: 'double_conversion::Double::Double' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(66) : warning C4514: 'double_conversion::Double::AsNormalizedDiyFp' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(88) : warning C4514: 'double_conversion::Double::NextDouble' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(101) : warning C4514: 'double_conversion::Double::PreviousDouble' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(162) : warning C4514: 'double_conversion::Double::UpperBoundary' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(171) : warning C4514: 'double_conversion::Double::NormalizedBoundaries' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(208) : warning C4514: 'double_conversion::Double::SignificandSizeForOrderOfMagnitude' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(270) : warning C4514: 'double_conversion::Single::Single' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(271) : warning C4514: 'double_conversion::Single::Single' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(319) : warning C4514: 'double_conversion::Single::IsNan' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(325) : warning C4514: 'double_conversion::Single::IsInfinite' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(340) : warning C4514: 'double_conversion::Single::NormalizedBoundaries' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(358) : warning C4514: 'double_conversion::Single::UpperBoundary' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(378) : warning C4514: 'double_conversion::Single::Infinity' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(382) : warning C4514: 'double_conversion::Single::NaN' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\double-conversion.cc(407) : warning C4702: unreachable code
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\double-conversion.cc(351) : warning C4702: unreachable code
Compiling c_src/double-conversion/fast-dtoa.cc
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
fast-dtoa.cc
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(237) : warning C4365: 'argument' : conversion from 'const int' to 'size_t', signed/unsigned mismatch
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(114) : warning C4820: 'double_conversion::DiyFp' : '4' bytes padding added after data member 'double_conversion::DiyFp::e_'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(259) : warning C4512: 'double_conversion::Double' : assignment operator could not be generated
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(42) : see declaration of 'double_conversion::Double'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(394) : warning C4512: 'double_conversion::Single' : assignment operator could not be generated
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(261) : see declaration of 'double_conversion::Single'
c_src/double-conversion/fast-dtoa.cc(354) : warning C4365: 'initializing' : conversion from 'uint32_t' to 'int', signed/unsigned mismatch
c_src/double-conversion/fast-dtoa.cc(355) : warning C4244: '=' : conversion from 'int' to 'char', possible loss of data
c_src/double-conversion/fast-dtoa.cc(384) : warning C4127: conditional expression is constant
c_src/double-conversion/fast-dtoa.cc(390) : warning C4244: '=' : conversion from 'int' to 'char', possible loss of data
c_src/double-conversion/fast-dtoa.cc(463) : warning C4365: 'initializing' : conversion from 'uint32_t' to 'int', signed/unsigned mismatch
c_src/double-conversion/fast-dtoa.cc(464) : warning C4244: '=' : conversion from 'int' to 'char', possible loss of data
c_src/double-conversion/fast-dtoa.cc(497) : warning C4244: '=' : conversion from 'int' to 'char', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(497) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(501) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(505) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(509) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(130) : warning C4514: 'strnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(221) : warning C4514: 'strchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(223) : warning C4514: 'strpbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(225) : warning C4514: 'strrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(227) : warning C4514: 'strstr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(232) : warning C4514: 'memchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(305) : warning C4514: 'wcsnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(382) : warning C4514: 'wcschr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(384) : warning C4514: 'wcspbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(386) : warning C4514: 'wcsrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(390) : warning C4514: 'wcsstr' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(201) : warning C4514: 'double_conversion::StringBuilder::StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(204) : warning C4514: 'double_conversion::StringBuilder::~StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(206) : warning C4514: 'double_conversion::StringBuilder::size' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(209) : warning C4514: 'double_conversion::StringBuilder::position' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(215) : warning C4514: 'double_conversion::StringBuilder::Reset' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(228) : warning C4514: 'double_conversion::StringBuilder::AddString' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(244) : warning C4514: 'double_conversion::StringBuilder::AddPadding' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(51) : warning C4514: 'double_conversion::Double::Double' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(54) : warning C4514: 'double_conversion::Double::Double' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(88) : warning C4514: 'double_conversion::Double::NextDouble' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(101) : warning C4514: 'double_conversion::Double::PreviousDouble' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(143) : warning C4514: 'double_conversion::Double::IsNan' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(149) : warning C4514: 'double_conversion::Double::IsInfinite' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(162) : warning C4514: 'double_conversion::Double::UpperBoundary' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(208) : warning C4514: 'double_conversion::Double::SignificandSizeForOrderOfMagnitude' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(220) : warning C4514: 'double_conversion::Double::NaN' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(270) : warning C4514: 'double_conversion::Single::Single' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(319) : warning C4514: 'double_conversion::Single::IsNan' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(325) : warning C4514: 'double_conversion::Single::IsInfinite' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(358) : warning C4514: 'double_conversion::Single::UpperBoundary' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(378) : warning C4514: 'double_conversion::Single::Infinity' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(382) : warning C4514: 'double_conversion::Single::NaN' : unreferenced inline function has been removed
Compiling c_src/double-conversion/fixed-dtoa.cc
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
fixed-dtoa.cc
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(237) : warning C4365: 'argument' : conversion from 'const int' to 'size_t', signed/unsigned mismatch
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(114) : warning C4820: 'double_conversion::DiyFp' : '4' bytes padding added after data member 'double_conversion::DiyFp::e_'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(259) : warning C4512: 'double_conversion::Double' : assignment operator could not be generated
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(42) : see declaration of 'double_conversion::Double'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(394) : warning C4512: 'double_conversion::Single' : assignment operator could not be generated
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(261) : see declaration of 'double_conversion::Single'
c_src/double-conversion/fixed-dtoa.cc(123) : warning C4365: '=' : conversion from 'uint32_t' to 'char', signed/unsigned mismatch
c_src/double-conversion/fixed-dtoa.cc(134) : warning C4365: 'initializing' : conversion from 'uint32_t' to 'int', signed/unsigned mismatch
c_src/double-conversion/fixed-dtoa.cc(136) : warning C4244: '=' : conversion from 'int' to 'char', possible loss of data
c_src/double-conversion/fixed-dtoa.cc(153) : warning C4100: 'requested_length' : unreferenced formal parameter
c_src/double-conversion/fixed-dtoa.cc(256) : warning C4244: '=' : conversion from 'int' to 'char', possible loss of data
c_src/double-conversion/fixed-dtoa.cc(277) : warning C4244: '=' : conversion from 'int' to 'char', possible loss of data
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(304) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(309) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(314) : warning C4514: 'fpclassify' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(319) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(324) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(329) : warning C4514: 'signbit' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(334) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(339) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(344) : warning C4514: '_fpcomp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(555) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(823) : warning C4514: '_chgsignl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(830) : warning C4514: '_copysignl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(884) : warning C4514: '_hypotl' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1025) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1027) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1029) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1031) : warning C4514: 'acos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1033) : warning C4514: 'acosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1035) : warning C4514: 'asin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1037) : warning C4514: 'asinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1039) : warning C4514: 'atan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1041) : warning C4514: 'atanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1043) : warning C4514: 'atan2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1045) : warning C4514: 'cbrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1047) : warning C4514: 'ceil' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1049) : warning C4514: 'copysign' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1051) : warning C4514: 'cos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1053) : warning C4514: 'cosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1055) : warning C4514: 'erf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1057) : warning C4514: 'erfc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1059) : warning C4514: 'exp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1061) : warning C4514: 'exp2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1063) : warning C4514: 'expm1' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1065) : warning C4514: 'fabs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1067) : warning C4514: 'fdim' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1069) : warning C4514: 'floor' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1071) : warning C4514: 'fma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1073) : warning C4514: 'fmax' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1075) : warning C4514: 'fmin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1077) : warning C4514: 'fmod' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1079) : warning C4514: 'frexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1081) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1083) : warning C4514: 'ilogb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1085) : warning C4514: 'ldexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1087) : warning C4514: 'lgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1089) : warning C4514: 'llrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1091) : warning C4514: 'llround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1093) : warning C4514: 'log' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1095) : warning C4514: 'log10' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1097) : warning C4514: 'log1p' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1099) : warning C4514: 'log2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1101) : warning C4514: 'logb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1103) : warning C4514: 'lrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1105) : warning C4514: 'lround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1107) : warning C4514: 'modf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1109) : warning C4514: 'nearbyint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1111) : warning C4514: 'nextafter' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1113) : warning C4514: 'nexttoward' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1115) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1117) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1119) : warning C4514: 'remainder' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1121) : warning C4514: 'remquo' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1123) : warning C4514: 'rint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1125) : warning C4514: 'round' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1127) : warning C4514: 'scalbln' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1129) : warning C4514: 'scalbn' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1131) : warning C4514: 'sin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1133) : warning C4514: 'sinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1135) : warning C4514: 'sqrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1137) : warning C4514: 'tan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1139) : warning C4514: 'tanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1141) : warning C4514: 'tgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1143) : warning C4514: 'trunc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1145) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1147) : warning C4514: 'acos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1149) : warning C4514: 'acosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1151) : warning C4514: 'asin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1153) : warning C4514: 'asinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1155) : warning C4514: 'atan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1157) : warning C4514: 'atanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1159) : warning C4514: 'atan2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1161) : warning C4514: 'cbrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1163) : warning C4514: 'ceil' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1165) : warning C4514: 'copysign' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1167) : warning C4514: 'cos' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1169) : warning C4514: 'cosh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1171) : warning C4514: 'erf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1173) : warning C4514: 'erfc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1175) : warning C4514: 'exp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1177) : warning C4514: 'exp2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1179) : warning C4514: 'expm1' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1181) : warning C4514: 'fabs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1183) : warning C4514: 'fdim' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1185) : warning C4514: 'floor' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1187) : warning C4514: 'fma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1189) : warning C4514: 'fmax' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1191) : warning C4514: 'fmin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1193) : warning C4514: 'fmod' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1195) : warning C4514: 'frexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1197) : warning C4514: 'hypot' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1199) : warning C4514: 'ilogb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1201) : warning C4514: 'ldexp' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1203) : warning C4514: 'lgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1205) : warning C4514: 'llrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1207) : warning C4514: 'llround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1209) : warning C4514: 'log' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1211) : warning C4514: 'log10' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1213) : warning C4514: 'log1p' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1215) : warning C4514: 'log2' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1217) : warning C4514: 'logb' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1219) : warning C4514: 'lrint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1221) : warning C4514: 'lround' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1223) : warning C4514: 'modf' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1225) : warning C4514: 'nearbyint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1227) : warning C4514: 'nextafter' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1229) : warning C4514: 'nexttoward' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1231) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1233) : warning C4514: 'pow' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1235) : warning C4514: 'remainder' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1237) : warning C4514: 'remquo' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1239) : warning C4514: 'rint' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1241) : warning C4514: 'round' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1243) : warning C4514: 'scalbln' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1245) : warning C4514: 'scalbn' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1247) : warning C4514: 'sin' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1249) : warning C4514: 'sinh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1251) : warning C4514: 'sqrt' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1253) : warning C4514: 'tan' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1255) : warning C4514: 'tanh' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1257) : warning C4514: 'tgamma' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\math.h(1259) : warning C4514: 'trunc' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(497) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(501) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(505) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(509) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(130) : warning C4514: 'strnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(221) : warning C4514: 'strchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(223) : warning C4514: 'strpbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(225) : warning C4514: 'strrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(227) : warning C4514: 'strstr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(232) : warning C4514: 'memchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(305) : warning C4514: 'wcsnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(382) : warning C4514: 'wcschr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(384) : warning C4514: 'wcspbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(386) : warning C4514: 'wcsrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(390) : warning C4514: 'wcsstr' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(201) : warning C4514: 'double_conversion::StringBuilder::StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(204) : warning C4514: 'double_conversion::StringBuilder::~StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(206) : warning C4514: 'double_conversion::StringBuilder::size' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(209) : warning C4514: 'double_conversion::StringBuilder::position' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(215) : warning C4514: 'double_conversion::StringBuilder::Reset' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(228) : warning C4514: 'double_conversion::StringBuilder::AddString' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(244) : warning C4514: 'double_conversion::StringBuilder::AddPadding' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(60) : warning C4514: 'double_conversion::DiyFp::Minus' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(71) : warning C4514: 'double_conversion::DiyFp::Times' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(51) : warning C4514: 'double_conversion::Double::Double' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(54) : warning C4514: 'double_conversion::Double::Double' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(66) : warning C4514: 'double_conversion::Double::AsNormalizedDiyFp' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(88) : warning C4514: 'double_conversion::Double::NextDouble' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(101) : warning C4514: 'double_conversion::Double::PreviousDouble' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(143) : warning C4514: 'double_conversion::Double::IsNan' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(149) : warning C4514: 'double_conversion::Double::IsInfinite' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(162) : warning C4514: 'double_conversion::Double::UpperBoundary' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(171) : warning C4514: 'double_conversion::Double::NormalizedBoundaries' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(208) : warning C4514: 'double_conversion::Double::SignificandSizeForOrderOfMagnitude' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(220) : warning C4514: 'double_conversion::Double::NaN' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(270) : warning C4514: 'double_conversion::Single::Single' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(271) : warning C4514: 'double_conversion::Single::Single' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(319) : warning C4514: 'double_conversion::Single::IsNan' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(325) : warning C4514: 'double_conversion::Single::IsInfinite' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(340) : warning C4514: 'double_conversion::Single::NormalizedBoundaries' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(358) : warning C4514: 'double_conversion::Single::UpperBoundary' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(378) : warning C4514: 'double_conversion::Single::Infinity' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(382) : warning C4514: 'double_conversion::Single::NaN' : unreferenced inline function has been removed
c_src/double-conversion/fixed-dtoa.cc(39) : warning C4514: 'double_conversion::UInt128::UInt128' : unreferenced inline function has been removed
Compiling c_src/double-conversion/strtod.cc
Microsoft (R) C/C++ Optimizing Compiler Version 18.00.31101 for x86
Copyright (C) Microsoft Corporation. All rights reserved.
strtod.cc
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(237) : warning C4365: 'argument' : conversion from 'const int' to 'size_t', signed/unsigned mismatch
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(114) : warning C4820: 'double_conversion::DiyFp' : '4' bytes padding added after data member 'double_conversion::DiyFp::e_'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(259) : warning C4512: 'double_conversion::Double' : assignment operator could not be generated
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(42) : see declaration of 'double_conversion::Double'
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(394) : warning C4512: 'double_conversion::Single' : assignment operator could not be generated
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(261) : see declaration of 'double_conversion::Single'
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(497) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(501) : warning C4514: 'abs' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(505) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\stdlib.h(509) : warning C4514: 'div' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(130) : warning C4514: 'strnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(221) : warning C4514: 'strchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(223) : warning C4514: 'strpbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(225) : warning C4514: 'strrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(227) : warning C4514: 'strstr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(232) : warning C4514: 'memchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(305) : warning C4514: 'wcsnlen_s' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(382) : warning C4514: 'wcschr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(384) : warning C4514: 'wcspbrk' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(386) : warning C4514: 'wcsrchr' : unreferenced inline function has been removed
C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\INCLUDE\string.h(390) : warning C4514: 'wcsstr' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(201) : warning C4514: 'double_conversion::StringBuilder::StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(204) : warning C4514: 'double_conversion::StringBuilder::~StringBuilder' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(206) : warning C4514: 'double_conversion::StringBuilder::size' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(209) : warning C4514: 'double_conversion::StringBuilder::position' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(215) : warning C4514: 'double_conversion::StringBuilder::Reset' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(228) : warning C4514: 'double_conversion::StringBuilder::AddString' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\utils.h(244) : warning C4514: 'double_conversion::StringBuilder::AddPadding' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(63) : warning C4514: 'double_conversion::Bignum::Times10' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(77) : warning C4514: 'double_conversion::Bignum::Equal' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(80) : warning C4514: 'double_conversion::Bignum::LessEqual' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(83) : warning C4514: 'double_conversion::Bignum::Less' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(89) : warning C4514: 'double_conversion::Bignum::PlusEqual' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(93) : warning C4514: 'double_conversion::Bignum::PlusLessEqual' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(97) : warning C4514: 'double_conversion::Bignum::PlusLess' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(114) : warning C4514: 'double_conversion::Bignum::EnsureCapacity' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\bignum.h(128) : warning C4514: 'double_conversion::Bignum::BigitLength' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(60) : warning C4514: 'double_conversion::DiyFp::Minus' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\diy-fp.h(71) : warning C4514: 'double_conversion::DiyFp::Times' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(51) : warning C4514: 'double_conversion::Double::Double' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(66) : warning C4514: 'double_conversion::Double::AsNormalizedDiyFp' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(143) : warning C4514: 'double_conversion::Double::IsNan' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(149) : warning C4514: 'double_conversion::Double::IsInfinite' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(171) : warning C4514: 'double_conversion::Double::NormalizedBoundaries' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(220) : warning C4514: 'double_conversion::Double::NaN' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(270) : warning C4514: 'double_conversion::Single::Single' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(319) : warning C4514: 'double_conversion::Single::IsNan' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(325) : warning C4514: 'double_conversion::Single::IsInfinite' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(340) : warning C4514: 'double_conversion::Single::NormalizedBoundaries' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(378) : warning C4514: 'double_conversion::Single::Infinity' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\ieee.h(382) : warning C4514: 'double_conversion::Single::NaN' : unreferenced inline function has been removed
c:\users\jrosenblum\src\j_cache\deps\jiffy\c_src\double-conversion\strtod.cc(266) : warning C4702: unreachable code
Microsoft (R) Incremental Linker Version 12.00.31101.0
Copyright (C) Microsoft Corporation. All rights reserved.
Creating library priv/jiffy.lib and object priv/jiffy.exp
The text was updated successfully, but these errors were encountered: