Go Back   EQEmulator Home > EQEmulator Forums > Support > Support::Windows Servers

Support::Windows Servers Support forum for Windows EQEMu users.

Reply
 
Thread Tools Display Modes
  #1  
Old 07-20-2019, 06:13 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default Gitpull submodules - empty

Compiler was looking for files in an empty submodules folder. I downloaded the zip files manually from github, but then compiler come up with a bunch of link errors, 11 failed, etc. (not sure if that's related), just new to me, since the last time I updated the source, the "submodules" didn't exist.
I did try doing a completely fresh gitpull (rather than just updating the source), and it still wouldn't populate the subfolders in submodules.

EDIT: The compile error I'm getting:
LINK : fatal error LNK1104: cannot open file '..\bin\Debug\common.lib'

I haven't done any custom editing to the source, just simply enabling the loginserver build in cmakelist. I reverted back to my source from June 21st (with no submodules) and it compiles fine. Just sayin ....
__________________
Hanging out at Antonica.World
Reply With Quote
  #2  
Old 07-20-2019, 07:23 AM
phantomghost
Hill Giant
 
Join Date: May 2015
Posts: 126
Default

You have to use git bash in the submodule directory. Off the top of my head I cannot remember but I think I did update on each folder (cereal, fmt, glm etc.) but not 100% positive.

Code:
git submodule init
and

Code:
git submodule update
- To update dependencies (Required for compiling)
- git submodule init
- git submodule update
- Libraries now in submodules
- [glm] https://github.com/g-truc/glm.git
- [flm] https://github.com/fmtlib/fmt.git
- [libuv] https://github.com/libuv/libuv.git
- [cereal] https://github.com/USCiLab/cereal.git
- [websocketpp] https://github.com/zaphoyd/websocketpp.git
- [recastnavigation] https://github.com/EQEmu/recastnavigation.git
Reply With Quote
  #3  
Old 07-20-2019, 07:50 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Quote:
Originally Posted by phantomghost View Post
You have to use git bash in the submodule directory. Off the top of my head I cannot remember but I think I did update on each folder (cereal, fmt, glm etc.) but not 100% positive.

Code:
git submodule init
and

Code:
git submodule update
- To update dependencies (Required for compiling)
- git submodule init
- git submodule update
- Libraries now in submodules
- [glm] https://github.com/g-truc/glm.git
- [flm] https://github.com/fmtlib/fmt.git
- [libuv] https://github.com/libuv/libuv.git
- [cereal] https://github.com/USCiLab/cereal.git
- [websocketpp] https://github.com/zaphoyd/websocketpp.git
- [recastnavigation] https://github.com/EQEmu/recastnavigation.git
Thanks phantom, that solves the update issue. I didn't have to do each subfolder seperately, all worked from root submodule folder, BUT, still getting that same compile error, it's not buidling any of the binaries at all. Not sure what's wrong yet, the whole source folder is clean, with no edits and everything there. The source I have before the submodules compiles fine. Still troubleshooting ......
__________________
Hanging out at Antonica.World
Reply With Quote
  #4  
Old 07-20-2019, 07:54 AM
phantomghost
Hill Giant
 
Join Date: May 2015
Posts: 126
Default

I did not need to but the other thing I was told on discord was:

Code:
git submodule sync
In the Source Directory.


I also, had to restart it completely fresh. When I did the updates it did not work, so I re-created my source folder, use git clone again, ran the git submodules and everything worked fine (I only modified the bot.cpp so the bots attack).
Reply With Quote
  #5  
Old 07-20-2019, 08:20 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Ya, I just tried everything fresh and ran all 3 of those bash submodule commands, it all went fine, but still not compiling. I've been using win 7-64 and 32 bit dependencies for a long time now, but maybe I need to upgrade cmake, or whatever for this submodule stuff. I'll keep at it .....
__________________
Hanging out at Antonica.World
Reply With Quote
  #6  
Old 07-20-2019, 09:53 AM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Well, I uninstalled Cmake 3.10 and installed 3.15 and still got the same error. Nothing else seems out of the norm, except it's just not building anything. It states "11 succeeded", but nothing in the build folder. Does anyone know if the new library changes require everything to go 64-bit ? That's all I got left for ideas, my thoughts are exhausted, lol

This is the Cmake configure/generate log:
Code:
The C compiler identification is MSVC 19.13.26129.0
The CXX compiler identification is MSVC 19.13.26129.0
Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.13.26128/bin/Hostx86/x86/cl.exe
Check for working C compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.13.26128/bin/Hostx86/x86/cl.exe -- works
Detecting C compiler ABI info
Detecting C compiler ABI info - done
Detecting C compile features
Detecting C compile features - done
Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.13.26128/bin/Hostx86/x86/cl.exe
Check for working CXX compiler: C:/Program Files (x86)/Microsoft Visual Studio/2017/Community/VC/Tools/MSVC/14.13.26128/bin/Hostx86/x86/cl.exe -- works
Detecting CXX compiler ABI info
Detecting CXX compiler ABI info - done
Detecting CXX compile features
Detecting CXX compile features - done
Found ZLIB: E:/GitPull Beta/dependencies/zlib_x86/lib/zdll.lib (found version "1.2.3") 
Found MySQL: E:/GitPull Beta/dependencies/mysql_x86/lib/libmysql.lib  
Found Perl: C:/perl/bin/perl.exe (found version "5.12.3") 
Found PerlLibs: C:/perl/lib/CORE/perl512.lib (found version "5.12.3") 
Found SODIUM: E:/GitPull Beta/dependencies/libsodium/Win32/Release/v140/dynamic/libsodium.lib  
Found Lua51: E:/GitPull Beta/dependencies/luaj_x86/bin/lua51.lib (found version "5.1.4") 
Found Boost: E:/GitPull Beta/dependencies/boost (found version "1.67.0")  
Version: 5.3.0
Build type: RelWithDebInfo
CXX_STANDARD: 11
Performing Test has_std_11_flag
Performing Test has_std_11_flag - Success
Performing Test has_std_0x_flag
Performing Test has_std_0x_flag - Failed
Performing Test SUPPORTS_VARIADIC_TEMPLATES
Performing Test SUPPORTS_VARIADIC_TEMPLATES - Success
Performing Test SUPPORTS_INITIALIZER_LIST
Performing Test SUPPORTS_INITIALIZER_LIST - Success
Performing Test SUPPORTS_ENUM_BASE
Performing Test SUPPORTS_ENUM_BASE - Success
Performing Test SUPPORTS_TYPE_TRAITS
Performing Test SUPPORTS_TYPE_TRAITS - Success
Performing Test SUPPORTS_USER_DEFINED_LITERALS
Performing Test SUPPORTS_USER_DEFINED_LITERALS - Success
Looking for open
Looking for open - found
Found OpenSSL: optimized;E:/GitPull Beta/dependencies/openssl_x86/lib/VC/libeay32MD.lib;debug;E:/GitPull Beta/dependencies/openssl_x86/lib/VC/libeay32MDd.lib (found version "1.0.1c")  
Configuring done

Version: 5.3.0
Build type: RelWithDebInfo
CXX_STANDARD: 11
Configuring done
Generating done
This is the build log:
Code:
1>------ Build started: Project: ZERO_CHECK, Configuration: Debug Win32 ------
1>Checking Build System
2>------ Build started: Project: Detour, Configuration: Debug Win32 ------
3>------ Build started: Project: Recast, Configuration: Debug Win32 ------
4>------ Build started: Project: common, Configuration: Debug Win32 ------
5>------ Build started: Project: fmt, Configuration: Debug Win32 ------
6>------ Build started: Project: luabind, Configuration: Debug Win32 ------
7>------ Build started: Project: uv_a, Configuration: Debug Win32 ------
8>------ Build started: Project: uv, Configuration: Debug Win32 ------
2>Building Custom Rule E:/GitPull Beta/submodules/recastnavigation/Detour/CMakeLists.txt
2>DetourAlloc.cpp
2>DetourAssert.cpp
2>DetourCommon.cpp
2>DetourNavMesh.cpp
2>DetourNavMeshBuilder.cpp
2>DetourNavMeshQuery.cpp
2>DetourNode.cpp
3>Building Custom Rule E:/GitPull Beta/submodules/recastnavigation/Recast/CMakeLists.txt
4>Building Custom Rule E:/GitPull Beta/common/CMakeLists.txt
5>Building Custom Rule E:/GitPull Beta/submodules/fmt/CMakeLists.txt
5>format.cc
3>Recast.cpp
6>Building Custom Rule E:/GitPull Beta/libs/luabind/CMakeLists.txt
3>RecastAlloc.cpp
3>RecastArea.cpp
3>RecastAssert.cpp
3>RecastContour.cpp
3>RecastFilter.cpp
3>RecastLayers.cpp
3>RecastMesh.cpp
5>posix.cc
7>Building Custom Rule E:/GitPull Beta/submodules/libuv/CMakeLists.txt
4>base_packet.cpp
4>classes.cpp
4>compression.cpp
4>condition.cpp
4>crash.cpp
4>crc16.cpp
4>database.cpp
2>Detour.vcxproj -> E:\Build Test\submodules\recastnavigation\Detour\Debug\Detour.lib
3>RecastMeshDetail.cpp
8>Building Custom Rule E:/GitPull Beta/submodules/libuv/CMakeLists.txt
9>------ Build started: Project: DetourTileCache, Configuration: Debug Win32 ------
10>------ Build started: Project: DetourCrowd, Configuration: Debug Win32 ------
4>database_conversions.cpp
3>RecastRasterization.cpp
6>class.cpp
6>class_info.cpp
6>class_registry.cpp
6>class_rep.cpp
7>fs-poll.c
10>Building Custom Rule E:/GitPull Beta/submodules/recastnavigation/DetourCrowd/CMakeLists.txt
9>Building Custom Rule E:/GitPull Beta/submodules/recastnavigation/DetourTileCache/CMakeLists.txt
6>create_class.cpp
6>error.cpp
6>exception_handler.cpp
6>function.cpp
8>fs-poll.c
10>DetourCrowd.cpp
9>DetourTileCache.cpp
9>DetourTileCacheBuilder.cpp
10>DetourLocalBoundary.cpp
10>DetourObstacleAvoidance.cpp
10>DetourPathCorridor.cpp
10>DetourPathQueue.cpp
10>DetourProximityGrid.cpp
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\fs-poll.c(250): warning C4100: 'loop': unreferenced formal parameter
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
4>database_instances.cpp
7>idna.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\fs-poll.c(250): warning C4100: 'loop': unreferenced formal parameter
8>idna.c
7>E:\GitPull Beta\submodules\libuv\src\idna.c(33): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\idna.c(33): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\idna.c(65): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\idna.c(69): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\idna.c(77): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\idna.c(80): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\idna.c(83): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\idna.c(147): warning C4244: '=': conversion from 'unsigned int' to 'char', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\idna.c(167): warning C4245: '=': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
7>inet.c
8>E:\GitPull Beta\submodules\libuv\src\idna.c(65): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\idna.c(69): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\idna.c(77): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\idna.c(80): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\idna.c(83): warning C4245: 'return': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\idna.c(147): warning C4244: '=': conversion from 'unsigned int' to 'char', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\idna.c(167): warning C4245: '=': conversion from 'int' to 'unsigned int', signed/unsigned mismatch
8>inet.c
7>E:\GitPull Beta\submodules\libuv\src\inet.c(197): warning C4244: '=': conversion from 'unsigned int' to 'unsigned char', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\inet.c(197): warning C4244: '=': conversion from 'unsigned int' to 'unsigned char', possible loss of data
7>strscpy.c
8>strscpy.c
7>threadpool.c
8>threadpool.c
3>RecastRegion.cpp
7>E:\GitPull Beta\submodules\libuv\src\threadpool.c(49): warning C4100: 'w': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\threadpool.c(269): warning C4100: 'req': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\threadpool.c(49): warning C4100: 'w': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\threadpool.c(299): warning C4459: declaration of 'wq' hides global declaration
7>E:\GitPull Beta\submodules\libuv\src\threadpool.c(41): note: see declaration of 'wq'
7>E:\GitPull Beta\submodules\libuv\src\threadpool.c(304): warning C4456: declaration of 'q' hides previous local declaration
7>E:\GitPull Beta\submodules\libuv\src\threadpool.c(298): note: see declaration of 'q'
7>timer.c
8>E:\GitPull Beta\submodules\libuv\src\threadpool.c(269): warning C4100: 'req': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\threadpool.c(299): warning C4459: declaration of 'wq' hides global declaration
8>E:\GitPull Beta\submodules\libuv\src\threadpool.c(41): note: see declaration of 'wq'
8>E:\GitPull Beta\submodules\libuv\src\threadpool.c(304): warning C4456: declaration of 'q' hides previous local declaration
8>E:\GitPull Beta\submodules\libuv\src\threadpool.c(298): note: see declaration of 'q'
8>timer.c
7>uv-common.c
8>uv-common.c
4>dbcore.cpp
4>deity.cpp
8>E:\GitPull Beta\submodules\libuv\src\uv-common.c(125): warning C4245: 'return': conversion from 'int' to '::size_t', signed/unsigned mismatch
4>emu_constants.cpp
7>E:\GitPull Beta\submodules\libuv\src\uv-common.c(125): warning C4245: 'return': conversion from 'int' to '::size_t', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\uv-common.c(133): warning C4245: 'return': conversion from 'int' to '::size_t', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\uv-common.c(212): warning C4244: 'function': conversion from 'int' to 'u_short', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\uv-common.c(224): warning C4244: 'function': conversion from 'int' to 'u_short', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\uv-common.c(382): warning C4456: declaration of 'q' hides previous local declaration
8>E:\GitPull Beta\submodules\libuv\src\uv-common.c(379): note: see declaration of 'q'
8>uv-data-getter-setters.c
7>E:\GitPull Beta\submodules\libuv\src\uv-common.c(133): warning C4245: 'return': conversion from 'int' to '::size_t', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\uv-common.c(212): warning C4244: 'function': conversion from 'int' to 'u_short', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\uv-common.c(224): warning C4244: 'function': conversion from 'int' to 'u_short', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\uv-common.c(382): warning C4456: declaration of 'q' hides previous local declaration
7>E:\GitPull Beta\submodules\libuv\src\uv-common.c(379): note: see declaration of 'q'
7>uv-data-getter-setters.c
4>emu_limits.cpp
4>emu_opcodes.cpp
9>DetourTileCache.vcxproj -> E:\Build Test\submodules\recastnavigation\DetourTileCache\Debug\DetourTileCache.lib
10>DetourCrowd.vcxproj -> E:\Build Test\submodules\recastnavigation\DetourCrowd\Debug\DetourCrowd.lib
8>version.c
7>version.c
3>Recast.vcxproj -> E:\Build Test\submodules\recastnavigation\Recast\Debug\Recast.lib
11>------ Build started: Project: DebugUtils, Configuration: Debug Win32 ------
11>Building Custom Rule E:/GitPull Beta/submodules/recastnavigation/DebugUtils/CMakeLists.txt
8>async.c
7>async.c
11>DebugDraw.cpp
11>DetourDebugDraw.cpp
11>RecastDebugDraw.cpp
11>RecastDump.cpp
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\async.c(31): warning C4100: 'loop': unreferenced formal parameter
8>core.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\async.c(31): warning C4100: 'loop': unreferenced formal parameter
7>core.c
4>E:\GitPull Beta\common\StackWalker\StackWalker.h(120): warning C4091: 'typedef ': ignored on left of 'StackWalker::CallstackEntryType' when no variable is declared (compiling source file E:\GitPull Beta\common\crash.cpp)
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(50): warning C4100: 'message': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(76): warning C4100: 'reserved': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(75): warning C4100: 'line': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(75): warning C4100: 'file': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(75): warning C4100: 'function': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(74): warning C4100: 'expression': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(349): warning C4100: 'ap': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(349): warning C4100: 'option': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(349): warning C4100: 'loop': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(354): warning C4100: 'loop': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\core.c(359): warning C4100: 'loop': unreferenced formal parameter
8>detect-wakeup.c
6>inheritance.cpp
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(50): warning C4100: 'message': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(76): warning C4100: 'reserved': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(75): warning C4100: 'line': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(75): warning C4100: 'file': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(75): warning C4100: 'function': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(74): warning C4100: 'expression': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(349): warning C4100: 'ap': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(349): warning C4100: 'option': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(349): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(354): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\core.c(359): warning C4100: 'loop': unreferenced formal parameter
7>detect-wakeup.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\detect-wakeup.c(16): warning C4100: 'Setting': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\detect-wakeup.c(14): warning C4100: 'Context': unreferenced formal parameter
8>dl.c
7>E:\GitPull Beta\submodules\libuv\src\win\detect-wakeup.c(16): warning C4100: 'Setting': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\detect-wakeup.c(14): warning C4100: 'Context': unreferenced formal parameter
7>dl.c
4>emu_versions.cpp
11>DebugUtils.vcxproj -> E:\Build Test\submodules\recastnavigation\DebugUtils\Debug\DebugUtils.lib
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>error.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>error.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>fs.c
7>fs.c
4>E:\GitPull Beta\common\database_instances.cpp(163): warning C4018: '<=': signed/unsigned mismatch
4>E:\GitPull Beta\common\database_instances.cpp(187): warning C4018: '<': signed/unsigned mismatch
4>eqdb.cpp
4>E:\GitPull Beta\common\database_conversions.cpp(466): warning C4244: 'initializing': conversion from 'float' to 'int', possible loss of data
4>E:\GitPull Beta\common\database_conversions.cpp(469): warning C4018: '<': signed/unsigned mismatch
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(586): warning C4245: '=': conversion from 'int' to 'DWORD', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(420): warning C4996: 'umask': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _umask. See online help for details.
8>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_io.h(546): note: see declaration of 'umask'
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(421): warning C4996: 'umask': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _umask. See online help for details.
8>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_io.h(546): note: see declaration of 'umask'
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(941): warning C4210: nonstandard extension used: function given file scope
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1511): warning C4245: '=': conversion from 'int' to 'DWORD', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1752): warning C4244: '=': conversion from 'unsigned int' to 'USHORT', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1753): warning C4244: '=': conversion from 'unsigned int' to 'USHORT', possible loss of data
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
6>link_compatibility.cpp
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(586): warning C4245: '=': conversion from 'int' to 'DWORD', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(420): warning C4996: 'umask': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _umask. See online help for details.
7>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_io.h(546): note: see declaration of 'umask'
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(421): warning C4996: 'umask': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _umask. See online help for details.
7>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_io.h(546): note: see declaration of 'umask'
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(941): warning C4210: nonstandard extension used: function given file scope
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1511): warning C4245: '=': conversion from 'int' to 'DWORD', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1752): warning C4244: '=': conversion from 'unsigned int' to 'USHORT', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1753): warning C4244: '=': conversion from 'unsigned int' to 'USHORT', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1781): warning C4244: '=': conversion from 'unsigned int' to 'USHORT', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1781): warning C4244: '=': conversion from 'unsigned int' to 'USHORT', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1782): warning C4244: '=': conversion from 'unsigned int' to 'USHORT', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1795): warning C4244: '=': conversion from 'int' to 'USHORT', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2314): warning C4100: 'gid': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2313): warning C4100: 'uid': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2328): warning C4100: 'gid': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2327): warning C4100: 'uid': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2327): warning C4100: 'fd': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2335): warning C4100: 'gid': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2334): warning C4100: 'uid': unreferenced formal parameter
8>fs-event.c
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1782): warning C4244: '=': conversion from 'unsigned int' to 'USHORT', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(1795): warning C4244: '=': conversion from 'int' to 'USHORT', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2314): warning C4100: 'gid': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2313): warning C4100: 'uid': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2328): warning C4100: 'gid': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2327): warning C4100: 'uid': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2327): warning C4100: 'fd': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2335): warning C4100: 'gid': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\fs.c(2334): warning C4100: 'uid': unreferenced formal parameter
7>fs-event.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\fs-event.c(112): warning C4996: 'wcsdup': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _wcsdup. See online help for details.
8>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_wstring.h(573): note: see declaration of 'wcsdup'
8>E:\GitPull Beta\submodules\libuv\src\win\fs-event.c(578): warning C4100: 'loop': unreferenced formal parameter
8>getaddrinfo.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\fs-event.c(112): warning C4996: 'wcsdup': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _wcsdup. See online help for details.
7>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_wstring.h(573): note: see declaration of 'wcsdup'
7>E:\GitPull Beta\submodules\libuv\src\win\fs-event.c(578): warning C4100: 'loop': unreferenced formal parameter
7>getaddrinfo.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>getnameinfo.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>getnameinfo.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>handle.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>handle.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>loop-watcher.c
6>object_rep.cpp
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\loop-watcher.c(29): warning C4100: 'loop': unreferenced formal parameter
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>loop-watcher.c
8>Generating Code...
8>e:\gitpull beta\submodules\libuv\src\win\fs.c(678): warning C4701: potentially uninitialized local variable 'original_position' used
8>e:\gitpull beta\submodules\libuv\src\win\fs.c(748): warning C4701: potentially uninitialized local variable 'original_position' used
4>E:\GitPull Beta\common\database.cpp(949): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
8>e:\gitpull beta\submodules\libuv\src\uv-data-getter-setters.c(41): warning C4702: unreachable code
8>e:\gitpull beta\submodules\libuv\src\idna.c(124): warning C4706: assignment within conditional expression
8>e:\gitpull beta\submodules\libuv\src\idna.c(142): warning C4706: assignment within conditional expression
8>e:\gitpull beta\submodules\libuv\src\idna.c(169): warning C4706: assignment within conditional expression
4>E:\GitPull Beta\common\database.cpp(951): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\database.cpp(953): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\database.cpp(989): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\database.cpp(991): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
8>e:\gitpull beta\submodules\libuv\src\idna.c(184): warning C4706: assignment within conditional expression
8>e:\gitpull beta\submodules\libuv\src\idna.c(147): warning C4701: potentially uninitialized local variable 'c' used
8>Compiling...
8>pipe.c
4>E:\GitPull Beta\common\database.cpp(993): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\database.cpp(1034): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
4>E:\GitPull Beta\common\database.cpp(1036): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\database.cpp(1038): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\loop-watcher.c(29): warning C4100: 'loop': unreferenced formal parameter
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
4>E:\GitPull Beta\common\database.cpp(1040): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
7>Generating Code...
7>e:\gitpull beta\submodules\libuv\src\win\fs.c(678): warning C4701: potentially uninitialized local variable 'original_position' used
4>E:\GitPull Beta\common\database.cpp(1405): warning C4244: 'return': conversion from 'uint16' to 'uint8', possible loss of data
4>E:\GitPull Beta\common\database.cpp(1438): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\pipe.c(198): warning C4996: 'close': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _close. See online help for details.
8>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_io.h(457): note: see declaration of 'close'
7>e:\gitpull beta\submodules\libuv\src\win\fs.c(748): warning C4701: potentially uninitialized local variable 'original_position' used
7>e:\gitpull beta\submodules\libuv\src\uv-data-getter-setters.c(41): warning C4702: unreachable code
8>E:\GitPull Beta\submodules\libuv\src\win\pipe.c(771): warning C4100: 'loop': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\pipe.c(938): warning C4100: 'backlog': unreferenced formal parameter
4>E:\GitPull Beta\common\database.cpp(1439): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\database.cpp(1440): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
7>e:\gitpull beta\submodules\libuv\src\idna.c(124): warning C4706: assignment within conditional expression
7>e:\gitpull beta\submodules\libuv\src\idna.c(142): warning C4706: assignment within conditional expression
4>E:\GitPull Beta\common\database.cpp(2179): warning C4244: 'return': conversion from 'int64' to 'int', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\pipe.c(1589): warning C4100: 'loop': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\pipe.c(1602): warning C4100: 'loop': unreferenced formal parameter
4>E:\GitPull Beta\common\database.cpp(2183): warning C4244: 'initializing': conversion from 'time_t' to 'uint32', possible loss of data
7>e:\gitpull beta\submodules\libuv\src\idna.c(169): warning C4706: assignment within conditional expression
7>e:\gitpull beta\submodules\libuv\src\idna.c(184): warning C4706: assignment within conditional expression
7>e:\gitpull beta\submodules\libuv\src\idna.c(147): warning C4701: potentially uninitialized local variable 'c' used
8>thread.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>poll.c
7>Compiling...
7>pipe.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\pipe.c(198): warning C4996: 'close': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _close. See online help for details.
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_io.h(457): note: see declaration of 'close'
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\poll.c(137): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\pipe.c(771): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\pipe.c(938): warning C4100: 'backlog': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\pipe.c(1589): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\pipe.c(1602): warning C4100: 'loop': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\poll.c(234): warning C4244: '=': conversion from 'int' to 'unsigned char', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\poll.c(229): warning C4100: 'loop': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\poll.c(477): warning C4244: '=': conversion from 'int' to 'unsigned char', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\poll.c(472): warning C4100: 'loop': unreferenced formal parameter
7>thread.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>poll.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\poll.c(635): warning C4100: 'loop': unreferenced formal parameter
8>process.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\process.c(521): warning C4996: 'wcsrev': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _wcsrev. See online help for details.
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\poll.c(137): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\poll.c(234): warning C4244: '=': conversion from 'int' to 'unsigned char', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\poll.c(229): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\poll.c(477): warning C4244: '=': conversion from 'int' to 'unsigned char', possible loss of data
8>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_wstring.h(607): note: see declaration of 'wcsrev'
8>E:\GitPull Beta\submodules\libuv\src\win\process.c(699): warning C4456: declaration of 'len' hides previous local declaration
8>E:\GitPull Beta\submodules\libuv\src\win\process.c(688): note: see declaration of 'len'
8>E:\GitPull Beta\submodules\libuv\src\win\process.c(925): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\poll.c(472): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\poll.c(635): warning C4100: 'loop': unreferenced formal parameter
7>process.c
8>E:\GitPull Beta\submodules\libuv\src\win\process.c(1138): warning C4456: declaration of 'err' hides previous local declaration
8>E:\GitPull Beta\submodules\libuv\src\win\process.c(941): note: see declaration of 'err'
8>process-stdio.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\process.c(521): warning C4996: 'wcsrev': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _wcsrev. See online help for details.
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\process-stdio.c(194): warning C4100: 'loop': unreferenced formal parameter
8>signal.c
7>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_wstring.h(607): note: see declaration of 'wcsrev'
7>E:\GitPull Beta\submodules\libuv\src\win\process.c(699): warning C4456: declaration of 'len' hides previous local declaration
7>E:\GitPull Beta\submodules\libuv\src\win\process.c(688): note: see declaration of 'len'
7>E:\GitPull Beta\submodules\libuv\src\win\process.c(925): warning C4100: 'loop': unreferenced formal parameter
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\signal.c(267): warning C4100: 'loop': unreferenced formal parameter
8>snprintf.c
7>E:\GitPull Beta\submodules\libuv\src\win\process.c(1138): warning C4456: declaration of 'err' hides previous local declaration
7>E:\GitPull Beta\submodules\libuv\src\win\process.c(941): note: see declaration of 'err'
7>process-stdio.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\snprintf.c(43): warning C4206: nonstandard extension used: translation unit is empty
8>stream.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\process-stdio.c(194): warning C4100: 'loop': unreferenced formal parameter
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>tcp.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>signal.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\signal.c(267): warning C4100: 'loop': unreferenced formal parameter
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\tcp.c(48): warning C4100: 'handle': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tcp.c(60): warning C4100: 'handle': unreferenced formal parameter
7>snprintf.c
7>E:\GitPull Beta\submodules\libuv\src\win\snprintf.c(43): warning C4206: nonstandard extension used: translation unit is empty
8>E:\GitPull Beta\submodules\libuv\src\win\tcp.c(1378): warning C4100: 'loop': unreferenced formal parameter
8>tty.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>stream.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>tcp.c
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1094): warning C4244: '=': conversion from 'UINT' to 'WORD', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1130): warning C4100: 'handle': unreferenced formal parameter
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1328): warning C4244: 'function': conversion from 'int' to 'unsigned char', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1329): warning C4244: 'function': conversion from 'int' to 'unsigned char', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\tcp.c(48): warning C4100: 'handle': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tcp.c(60): warning C4100: 'handle': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1425): warning C4244: '=': conversion from 'int' to 'char', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1434): warning C4244: '=': conversion from 'int' to 'char', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\tcp.c(1378): warning C4100: 'loop': unreferenced formal parameter
7>tty.c
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1444): warning C4244: '=': conversion from 'int' to 'char', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1449): warning C4244: '=': conversion from 'int' to 'char', possible loss of data
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1536): warning C4244: '=': conversion from 'int' to 'SHORT', possible loss of data
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1094): warning C4244: '=': conversion from 'UINT' to 'WORD', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1847): warning C4244: '=': conversion from 'unsigned int' to 'unsigned short', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2188): warning C4996: 'close': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _close. See online help for details.
8>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_io.h(457): note: see declaration of 'close'
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2240): warning C4100: 'raw_req': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2239): warning C4100: 'handle': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2239): warning C4100: 'loop': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2250): warning C4100: 'req': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2249): warning C4100: 'handle': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2249): warning C4100: 'loop': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2281): warning C4100: 'param': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2316): warning C4100: 'dwmsEventTime': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2315): warning C4100: 'dwEventThread': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2314): warning C4100: 'idChild': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2313): warning C4100: 'idObject': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2312): warning C4100: 'hwnd': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2311): warning C4100: 'event': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2310): warning C4100: 'hWinEventHook': unreferenced formal parameter
8>udp.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>E:\GitPull Beta\submodules\libuv\src\win\udp.c(190): warning C4100: 'loop': unreferenced formal parameter
8>util.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1130): warning C4100: 'handle': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1328): warning C4244: 'function': conversion from 'int' to 'unsigned char', possible loss of data
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1329): warning C4244: 'function': conversion from 'int' to 'unsigned char', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1425): warning C4244: '=': conversion from 'int' to 'char', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1434): warning C4244: '=': conversion from 'int' to 'char', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1444): warning C4244: '=': conversion from 'int' to 'char', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\util.c(304): warning C4245: 'return': conversion from 'int' to 'uint64_t', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1449): warning C4244: '=': conversion from 'int' to 'char', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\util.c(316): warning C4245: 'return': conversion from 'int' to 'uint64_t', signed/unsigned mismatch
8>E:\GitPull Beta\submodules\libuv\src\win\util.c(351): warning C4100: 'argc': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\util.c(745): warning C4244: 'function': conversion from 'int' to 'BYTE', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1536): warning C4244: '=': conversion from 'int' to 'SHORT', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(1847): warning C4244: '=': conversion from 'unsigned int' to 'unsigned short', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2188): warning C4996: 'close': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _close. See online help for details.
8>E:\GitPull Beta\submodules\libuv\src\win\util.c(746): warning C4244: 'function': conversion from 'int' to 'BYTE', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\util.c(747): warning C4244: 'function': conversion from 'int' to 'BYTE', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\util.c(748): warning C4244: 'function': conversion from 'int' to 'BYTE', possible loss of data
8>E:\GitPull Beta\submodules\libuv\src\win\util.c(1068): warning C4100: 'count': unreferenced formal parameter
7>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\corecrt_io.h(457): note: see declaration of 'close'
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2240): warning C4100: 'raw_req': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2239): warning C4100: 'handle': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2239): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2250): warning C4100: 'req': unreferenced formal parameter
8>E:\GitPull Beta\submodules\libuv\src\win\util.c(1744): warning C4244: '=': conversion from 'int' to 'char', possible loss of data
8>winapi.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2249): warning C4100: 'handle': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2249): warning C4100: 'loop': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2281): warning C4100: 'param': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2316): warning C4100: 'dwmsEventTime': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2315): warning C4100: 'dwEventThread': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2314): warning C4100: 'idChild': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2313): warning C4100: 'idObject': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2312): warning C4100: 'hwnd': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2311): warning C4100: 'event': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\tty.c(2310): warning C4100: 'hWinEventHook': unreferenced formal parameter
7>udp.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\udp.c(190): warning C4100: 'loop': unreferenced formal parameter
7>util.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>E:\GitPull Beta\submodules\libuv\src\win\util.c(304): warning C4245: 'return': conversion from 'int' to 'uint64_t', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\win\util.c(316): warning C4245: 'return': conversion from 'int' to 'uint64_t', signed/unsigned mismatch
7>E:\GitPull Beta\submodules\libuv\src\win\util.c(351): warning C4100: 'argc': unreferenced formal parameter
8>winsock.c
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
8>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
8>Generating Code...
7>E:\GitPull Beta\submodules\libuv\src\win\util.c(745): warning C4244: 'function': conversion from 'int' to 'BYTE', possible loss of data
8>e:\gitpull beta\submodules\libuv\src\win\winsock.c(534): warning C4701: potentially uninitialized local variable 'iosb' used
8>e:\gitpull beta\submodules\libuv\src\win\process-stdio.c(330): warning C4701: potentially uninitialized local variable 'fdopt' used
8>e:\gitpull beta\submodules\libuv\src\win\thread.c(387): warning C4702: unreachable code
8>e:\gitpull beta\submodules\libuv\src\win\pipe.c(615): warning C4701: potentially uninitialized local variable 'duplex_flags' used
7>E:\GitPull Beta\submodules\libuv\src\win\util.c(746): warning C4244: 'function': conversion from 'int' to 'BYTE', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\util.c(747): warning C4244: 'function': conversion from 'int' to 'BYTE', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\util.c(748): warning C4244: 'function': conversion from 'int' to 'BYTE', possible loss of data
7>E:\GitPull Beta\submodules\libuv\src\win\util.c(1068): warning C4100: 'count': unreferenced formal parameter
7>E:\GitPull Beta\submodules\libuv\src\win\util.c(1744): warning C4244: '=': conversion from 'int' to 'char', possible loss of data
7>winapi.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>winsock.c
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4155): warning C4201: nonstandard extension used: nameless struct/union
7>e:\gitpull beta\submodules\libuv\src\win\winapi.h(4163): warning C4201: nonstandard extension used: nameless struct/union
7>Generating Code...
7>e:\gitpull beta\submodules\libuv\src\win\winsock.c(534): warning C4701: potentially uninitialized local variable 'iosb' used
7>e:\gitpull beta\submodules\libuv\src\win\process-stdio.c(330): warning C4701: potentially uninitialized local variable 'fdopt' used
7>e:\gitpull beta\submodules\libuv\src\win\thread.c(387): warning C4702: unreachable code
7>e:\gitpull beta\submodules\libuv\src\win\pipe.c(615): warning C4701: potentially uninitialized local variable 'duplex_flags' used
8>   Creating library E:/Build Test/submodules/libuv/Debug/uv.lib and object E:/Build Test/submodules/libuv/Debug/uv.exp
7>uv_a.vcxproj -> E:\Build Test\submodules\libuv\Debug\uv_a.lib
7>Done building project "uv_a.vcxproj".
4>eqdb_res.cpp
4>eqemu_exception.cpp
4>eqemu_config.cpp
4>eqemu_logsys.cpp
4>e:\gitpull beta\common\eqdb_res.h(35): warning C4244: 'return': conversion from 'my_ulonglong' to 'unsigned long', possible loss of data (compiling source file E:\GitPull Beta\common\eqdb.cpp)
4>E:\GitPull Beta\common\eqdb.cpp(34): warning C4244: 'return': conversion from 'my_ulonglong' to 'unsigned long', possible loss of data
4>E:\GitPull Beta\common\eqdb.cpp(38): warning C4244: 'return': conversion from 'my_ulonglong' to 'unsigned long', possible loss of data
6>open.cpp
4>eq_limits.cpp
5>fmt.vcxproj -> E:\Build Test\submodules\fmt\Debug\fmtd.lib
6>pcall.cpp
4>e:\gitpull beta\common\eqdb_res.h(35): warning C4244: 'return': conversion from 'my_ulonglong' to 'unsigned long', possible loss of data (compiling source file E:\GitPull Beta\common\eqdb_res.cpp)
4>eq_packet.cpp
4>eq_stream_ident.cpp
6>scope.cpp
6>stack_content_by_name.cpp
4>eq_stream_proxy.cpp
6>weak_ref.cpp
6>wrapper_base.cpp
4>eqtime.cpp
4>E:\GitPull Beta\common\eqemu_logsys.cpp(229): warning C4996: 'getpid': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _getpid. See online help for details.
8>uv.vcxproj -> E:\Build Test\submodules\libuv\Debug\uv.dll
8>Done building project "uv.vcxproj".
4>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\process.h(353): note: see declaration of 'getpid'
4>E:\GitPull Beta\common\eqemu_logsys.cpp(471): warning C4996: 'getpid': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _getpid. See online help for details.
4>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\process.h(353): note: see declaration of 'getpid'
4>E:\GitPull Beta\common\eqemu_logsys.cpp(482): warning C4996: 'getpid': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _getpid. See online help for details.
4>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\process.h(353): note: see declaration of 'getpid'
4>E:\GitPull Beta\common\eqemu_logsys.cpp(501): warning C4996: 'getpid': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _getpid. See online help for details.
4>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\process.h(353): note: see declaration of 'getpid'
4>E:\GitPull Beta\common\eqemu_logsys.cpp(507): warning C4996: 'getpid': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _getpid. See online help for details.
4>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\process.h(353): note: see declaration of 'getpid'
4>event_sub.cpp
4>extprofile.cpp
4>faction.cpp
4>guild_base.cpp
4>E:\GitPull Beta\common\eqtime.cpp(76): warning C4244: 'initializing': conversion from 'time_t' to 'unsigned long', possible loss of data
4>E:\GitPull Beta\common\eq_packet.cpp(209): warning C4244: '=': conversion from 'const uint16' to 'unsigned char', possible loss of data
4>E:\GitPull Beta\common\eq_packet.cpp(221): warning C4244: '=': conversion from 'uint16' to 'unsigned char', possible loss of data
4>guilds.cpp
4>inventory_profile.cpp
4>inventory_slot.cpp
4>ipc_mutex.cpp
4>item_data.cpp
4>item_instance.cpp
4>json_config.cpp
4>E:\GitPull Beta\common\item_data.cpp(175): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
4>light_source.cpp
4>md5.cpp
4>memory_buffer.cpp
4>memory_mapped_file.cpp
4>misc.cpp
4>misc_functions.cpp
4>E:\GitPull Beta\common\memory_buffer.cpp(268): warning C4244: 'initializing': conversion from 'std::streamoff' to '::size_t', possible loss of data
4>mutex.cpp
4>mysql_request_result.cpp
4>mysql_request_row.cpp
4>opcode_map.cpp
4>opcodemgr.cpp
4>E:\GitPull Beta\common\misc_functions.cpp(108): warning C4996: 'gethostbyname': Use getaddrinfo() or GetAddrInfoW() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
4>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(2238): note: see declaration of 'gethostbyname'
4>E:\GitPull Beta\common\mutex.cpp(39): warning C4996: 'GetVersionExA': was declared deprecated
4>C:\Program Files (x86)\Windows Kits\8.1\Include\um\sysinfoapi.h(433): note: see declaration of 'GetVersionExA'
4>E:\GitPull Beta\common\mutex.cpp(43): warning C4996: 'GetVersionExA': was declared deprecated
4>C:\Program Files (x86)\Windows Kits\8.1\Include\um\sysinfoapi.h(433): note: see declaration of 'GetVersionExA'
4>packet_dump.cpp
4>E:\GitPull Beta\common\mysql_request_result.cpp(77): warning C4018: '>=': signed/unsigned mismatch
4>E:\GitPull Beta\common\mysql_request_result.cpp(85): warning C4018: '>=': signed/unsigned mismatch
4>packet_dump_file.cpp
4>packet_functions.cpp
4>perl_eqdb.cpp
4>perl_eqdb_res.cpp
4>proc_launcher.cpp
4>profanity_manager.cpp
4>ptimer.cpp
4>e:\gitpull beta\common\eqdb_res.h(35): warning C4244: 'return': conversion from 'my_ulonglong' to 'unsigned long', possible loss of data (compiling source file E:\GitPull Beta\common\perl_eqdb.cpp)
4>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\common\perl_eqdb.cpp)
4>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\common\perl_eqdb.cpp)
4>e:\gitpull beta\common\eqdb_res.h(35): warning C4244: 'return': conversion from 'my_ulonglong' to 'unsigned long', possible loss of data (compiling source file E:\GitPull Beta\common\perl_eqdb_res.cpp)
4>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\common\perl_eqdb_res.cpp)
4>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\common\perl_eqdb_res.cpp)
4>races.cpp
4>rdtsc.cpp
4>rulesys.cpp
4>say_link.cpp
4>serialize_buffer.cpp
4>serverinfo.cpp
4>shareddb.cpp
4>skills.cpp
4>spdat.cpp
4>string_util.cpp
4>struct_strategy.cpp
4>E:\GitPull Beta\common\rulesys.cpp(151): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\spdat.cpp(507): warning C4018: '<': signed/unsigned mismatch
4>textures.cpp
4>timer.cpp
6>luabind.vcxproj -> E:\Build Test\bin\Debug\luabind.lib
4>unix.cpp
4>xml_parser.cpp
4>platform.cpp
4>jsoncpp.cpp
4>console_server.cpp
4>E:\GitPull Beta\common\shareddb.cpp(512): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\shareddb.cpp(647): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\shareddb.cpp(792): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\shareddb.cpp(1813): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\shareddb.cpp(1814): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\shareddb.cpp(1815): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\shareddb.cpp(1816): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>console_server_connection.cpp
4>E:\GitPull Beta\common\timer.cpp(74): warning C4244: '=': conversion from 'time_t' to 'long', possible loss of data
4>daybreak_connection.cpp
4>eqstream.cpp
4>packet.cpp
4>servertalk_client_connection.cpp
4>servertalk_legacy_client_connection.cpp
4>servertalk_server.cpp
4>servertalk_server_connection.cpp
4>E:\GitPull Beta\common\net\daybreak_connection.cpp(208): warning C4018: '>=': signed/unsigned mismatch
4>E:\GitPull Beta\common\net\daybreak_connection.cpp(796): warning C4244: '=': conversion from '__int64' to 'uint32_t', possible loss of data
4>E:\GitPull Beta\common\net\daybreak_connection.cpp(1153): warning C4244: '=': conversion from 'uint64_t' to '::size_t', possible loss of data
4>E:\GitPull Beta\common\net\daybreak_connection.cpp(1174): warning C4244: '=': conversion from 'uint64_t' to '::size_t', possible loss of data
4>E:\GitPull Beta\common\net\daybreak_connection.cpp(1335): warning C4018: '>=': signed/unsigned mismatch
4>E:\GitPull Beta\common\net\daybreak_connection.cpp(1360): warning C4018: '>=': signed/unsigned mismatch
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1045): error C2668: 'fmt::v5::internal::make_value': ambiguous call to overloaded function (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(760): note: could be 'fmt::v5::internal::init<Context,fmt::v5::basic_string_view<char>,fmt::v5::internal::string_type> fmt::v5::internal::make_value<Context,char[0]>(const S (&))'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>,
4>            S=char [0]
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(711): note: or       'fmt::v5::internal::init<Context,const void *,fmt::v5::internal::pointer_type> fmt::v5::internal::make_value<Context>(std::nullptr_t)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(708): note: or       'fmt::v5::internal::init<Context,const void *,fmt::v5::internal::pointer_type> fmt::v5::internal::make_value<Context>(const void *)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(707): note: or       'fmt::v5::internal::init<Context,const void *,fmt::v5::internal::pointer_type> fmt::v5::internal::make_value<Context>(void *)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(705): note: or       'fmt::v5::internal::init<Context,fmt::v5::basic_string_view<char>,fmt::v5::internal::string_type> fmt::v5::internal::make_value<Context>(const std::basic_string<char,std::char_traits<char>,std::allocator<char>> &)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(701): note: or       'fmt::v5::internal::init<Context,fmt::v5::basic_string_view<char>,fmt::v5::internal::string_type> fmt::v5::internal::make_value<Context>(fmt::v5::basic_string_view<char>)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(700): note: or       'fmt::v5::internal::init<Context,const unsigned char *,fmt::v5::internal::cstring_type> fmt::v5::internal::make_value<Context>(const unsigned char *)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(699): note: or       'fmt::v5::internal::init<Context,const unsigned char *,fmt::v5::internal::cstring_type> fmt::v5::internal::make_value<Context>(unsigned char *)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(698): note: or       'fmt::v5::internal::init<Context,const signed char *,fmt::v5::internal::cstring_type> fmt::v5::internal::make_value<Context>(const signed char *)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(697): note: or       'fmt::v5::internal::init<Context,const signed char *,fmt::v5::internal::cstring_type> fmt::v5::internal::make_value<Context>(signed char *)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(694): note: or       'fmt::v5::internal::init<Context,const Char *,fmt::v5::internal::cstring_type> fmt::v5::internal::make_value<Context>(const char *)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>,
4>            Char=char
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(692): note: or       'fmt::v5::internal::init<Context,const Char *,fmt::v5::internal::cstring_type> fmt::v5::internal::make_value<Context>(char *)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>,
4>            Char=char
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(688): note: or       'fmt::v5::internal::init<Context,long double,9> fmt::v5::internal::make_value<Context>(long double)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(687): note: or       'fmt::v5::internal::init<Context,double,fmt::v5::internal::double_type> fmt::v5::internal::make_value<Context>(double)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(686): note: or       'fmt::v5::internal::init<Context,double,fmt::v5::internal::double_type> fmt::v5::internal::make_value<Context>(float)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(673): note: or       'fmt::v5::internal::init<Context,unsigned int,fmt::v5::internal::uint_type> fmt::v5::internal::make_value<Context>(unsigned char)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(672): note: or       'fmt::v5::internal::init<Context,int,fmt::v5::internal::int_type> fmt::v5::internal::make_value<Context>(signed char)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(671): note: or       'fmt::v5::internal::init<Context,unsigned __int64,fmt::v5::internal::ulong_long_type> fmt::v5::internal::make_value<Context>(unsigned __int64)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(670): note: or       'fmt::v5::internal::init<Context,__int64,fmt::v5::internal::long_long_type> fmt::v5::internal::make_value<Context>(__int64)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(666): note: or       'fmt::v5::internal::init<Context,unsigned int,fmt::v5::internal::uint_type> fmt::v5::internal::make_value<Context>(unsigned long)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(662): note: or       'fmt::v5::internal::init<Context,int,fmt::v5::internal::int_type> fmt::v5::internal::make_value<Context>(long)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(656): note: or       'fmt::v5::internal::init<Context,unsigned int,fmt::v5::internal::uint_type> fmt::v5::internal::make_value<Context>(unsigned int)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(655): note: or       'fmt::v5::internal::init<Context,int,fmt::v5::internal::int_type> fmt::v5::internal::make_value<Context>(int)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(654): note: or       'fmt::v5::internal::init<Context,unsigned int,fmt::v5::internal::uint_type> fmt::v5::internal::make_value<Context>(unsigned short)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(653): note: or       'fmt::v5::internal::init<Context,int,fmt::v5::internal::int_type> fmt::v5::internal::make_value<Context>(short)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(652): note: or       'fmt::v5::internal::init<Context,int,fmt::v5::internal::bool_type> fmt::v5::internal::make_value<Context>(bool)'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1046): note: while trying to match the argument list '(char [0])' (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1055): note: see reference to class template instantiation 'fmt::v5::internal::get_type<Context,Arg>' being compiled
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>,
4>            Arg=char [0]
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1055): note: see reference to function template instantiation 'unsigned __int64 fmt::v5::internal::get_types<Context,char[0],>(void)' being compiled
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1159): note: see reference to function template instantiation 'unsigned __int64 fmt::v5::internal::get_types<Context,char[64],char[0]>(void)' being compiled
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1157): note: while compiling class template member function 'unsigned __int64 fmt::v5::format_arg_store<fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,Char>,char [64],char [0]>::get_types(void)'
4>        with
4>        [
4>            Char=char
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1359): note: see reference to class template instantiation 'fmt::v5::format_arg_store<fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,Char>,char [64],char [0]>' being compiled
4>        with
4>        [
4>            Char=char
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1458): note: see reference to class template instantiation 'fmt::v5::internal::checked_args<S,char [64],char [0]>' being compiled
4>        with
4>        [
4>            S=char [20]
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>E:\GitPull Beta\common\net\console_server_connection.cpp(121): note: see reference to function template instantiation 'std::basic_string<char,std::char_traits<char>,std::allocator<char>> fmt::v5::format<char[20],char[64],char[0]>(const S (&),const char (&)[64],const char (&)[0])' being compiled
4>        with
4>        [
4>            S=char [20]
4>        ]
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1047): error C2131: expression did not evaluate to a constant (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1047): note: a non-constant (sub-)expression was encountered (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1047): note: see usage of 'fmt::v5::internal::get_type<Context,Arg>::fmt::v5::internal::get_type<Context,Arg>::value_type::type_tag'
4>        with
4>        [
4>            Context=fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,char>,
4>            Arg=char [0]
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1159): error C2131: expression did not evaluate to a constant (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1055): note: failure was caused by control reaching the end of a constexpr function (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1159): note: while evaluating 'fmt::v5::internal::get_types()' (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1165): note: while evaluating 'fmt::v5::format_arg_store<fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,Char>,char [64],char [0]>::get_types()'
4>        with
4>        [
4>            Char=char
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1165): error C2131: expression did not evaluate to a constant (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1158): note: failure was caused by control reaching the end of a constexpr function (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>e:\gitpull beta\submodules\fmt\include\fmt\core.h(1165): note: while evaluating 'fmt::v5::format_arg_store<fmt::v5::basic_format_context<std::back_insert_iterator<fmt::v5::internal::basic_buffer<char>>,Char>,char [64],char [0]>::get_types()'
4>        with
4>        [
4>            Char=char
4>        ] (compiling source file E:\GitPull Beta\common\net\console_server_connection.cpp)
4>tcp_connection.cpp
4>E:\GitPull Beta\common\net\eqstream.cpp(82): warning C4244: 'argument': conversion from 'uint16' to 'uint8_t', possible loss of data
4>E:\GitPull Beta\common\net\eqstream.cpp(146): warning C4996: 'inet_addr': Use inet_pton() or InetPton() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
4>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1850): note: see declaration of 'inet_addr'
4>tcp_server.cpp
4>E:\GitPull Beta\common\net\servertalk_legacy_client_connection.cpp(28): warning C4267: 'argument': conversion from 'size_t' to 'uint16_t', possible loss of data
4>websocket_server.cpp
4>websocket_server_connection.cpp
4>patches.cpp
4>sod.cpp
4>sod_limits.cpp
4>sof.cpp
4>sof_limits.cpp
4>rof.cpp
4>rof_limits.cpp
4>rof2.cpp
4>rof2_limits.cpp
4>titanium.cpp
4>titanium_limits.cpp
4>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.13.26128\include\xutility(2440): warning C4996: 'std::copy::_Unchecked_iterators::_Deprecate': Call to 'std::copy' with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked Iterators' (compiling source file E:\GitPull Beta\common\net\websocket_server.cpp)
4>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.13.26128\include\xutility(2440): note: see declaration of 'std::copy::_Unchecked_iterators::_Deprecate' (compiling source file E:\GitPull Beta\common\net\websocket_server.cpp)
4>E:\GitPull Beta\submodules\websocketpp\websocketpp/frame.hpp(255): note: see reference to function template instantiation '_OutIt std::copy<uint8_t*,uint8_t*>(_InIt,_InIt,_OutIt)' being compiled
4>        with
4>        [
4>            _OutIt=uint8_t *,
4>            _InIt=uint8_t *
4>        ] (compiling source file E:\GitPull Beta\common\net\websocket_server.cpp)
4>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.13.26128\include\xutility(2440): warning C4996: 'std::copy::_Unchecked_iterators::_Deprecate': Call to 'std::copy' with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked Iterators' (compiling source file E:\GitPull Beta\common\net\websocket_server_connection.cpp)
4>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.13.26128\include\xutility(2440): note: see declaration of 'std::copy::_Unchecked_iterators::_Deprecate' (compiling source file E:\GitPull Beta\common\net\websocket_server_connection.cpp)
4>E:\GitPull Beta\submodules\websocketpp\websocketpp/frame.hpp(255): note: see reference to function template instantiation '_OutIt std::copy<uint8_t*,uint8_t*>(_InIt,_InIt,_OutIt)' being compiled
4>        with
4>        [
4>            _OutIt=uint8_t *,
4>            _InIt=uint8_t *
4>        ] (compiling source file E:\GitPull Beta\common\net\websocket_server_connection.cpp)
4>E:\GitPull Beta\common\patches\sod.cpp(1512): warning C4308: negative integral constant converted to unsigned type
4>E:\GitPull Beta\common\patches\sod.cpp(1512): warning C4307: '*': integral constant overflow
4>E:\GitPull Beta\common\patches\sod.cpp(1643): warning C4244: '=': conversion from 'uint32' to 'float', possible loss of data
4>E:\GitPull Beta\common\patches\sod.cpp(1844): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\sod.cpp(1909): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\sod.cpp(2514): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\patches\sof.cpp(522): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\sof.cpp(1176): warning C4308: negative integral constant converted to unsigned type
4>E:\GitPull Beta\common\patches\sof.cpp(1176): warning C4307: '*': integral constant overflow
4>E:\GitPull Beta\common\patches\sof.cpp(1307): warning C4244: '=': conversion from 'uint32' to 'float', possible loss of data
4>E:\GitPull Beta\common\patches\sof.cpp(1508): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\sof.cpp(1573): warning C4018: '<': signed/unsigned mismatch
4>uf.cpp
4>E:\GitPull Beta\common\patches\rof.cpp(2737): warning C4309: '=': truncation of constant value
4>E:\GitPull Beta\common\patches\rof.cpp(2738): warning C4309: '=': truncation of constant value
4>E:\GitPull Beta\common\patches\rof.cpp(2739): warning C4309: '=': truncation of constant value
4>uf_limits.cpp
4>E:\GitPull Beta\common\patches\rof2.cpp(2823): warning C4309: '=': truncation of constant value
4>E:\GitPull Beta\common\patches\rof2.cpp(2824): warning C4309: '=': truncation of constant value
4>E:\GitPull Beta\common\patches\rof2.cpp(2825): warning C4309: '=': truncation of constant value
4>E:\GitPull Beta\common\patches\rof2.cpp(2908): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\rof2.cpp(2961): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\rof2.cpp(3017): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\rof2.cpp(3329): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data
4>E:\GitPull Beta\common\patches\rof2.cpp(3570): warning C4477: 'snprintf' : format string '%016d' requires an argument of type 'int', but variadic argument 1 has type 'int64'
4>E:\GitPull Beta\common\patches\rof2.cpp(3570): note: consider using '%lld' in the format string
4>E:\GitPull Beta\common\patches\rof2.cpp(3570): note: consider using '%I64d' in the format string
4>E:\GitPull Beta\common\patches\rof2.cpp(3755): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\rof2.cpp(3758): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\rof2.cpp(3778): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\rof2.cpp(3786): warning C4018: '<': signed/unsigned mismatch
4>StackWalker.cpp
4>E:\GitPull Beta\common\patches\rof2.cpp(4032): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>E:\GitPull Beta\common\patches\titanium.cpp(1032): warning C4308: negative integral constant converted to unsigned type
4>E:\GitPull Beta\common\patches\titanium.cpp(1032): warning C4307: '*': integral constant overflow
4>E:\GitPull Beta\common\patches\titanium.cpp(1290): warning C4018: '<': signed/unsigned mismatch
4>tinystr.cpp
4>e:\gitpull beta\common\stackwalker\StackWalker.h(120): warning C4091: 'typedef ': ignored on left of 'StackWalker::CallstackEntryType' when no variable is declared (compiling source file E:\GitPull Beta\common\StackWalker\StackWalker.cpp)
4>C:\Program Files (x86)\Windows Kits\8.1\Include\um\dbghelp.h(1544): warning C4091: 'typedef ': ignored on left of '' when no variable is declared (compiling source file E:\GitPull Beta\common\StackWalker\StackWalker.cpp)
4>C:\Program Files (x86)\Windows Kits\8.1\Include\um\dbghelp.h(3190): warning C4091: 'typedef ': ignored on left of '' when no variable is declared (compiling source file E:\GitPull Beta\common\StackWalker\StackWalker.cpp)
4>E:\GitPull Beta\common\StackWalker\StackWalker.cpp(356): warning C4091: 'typedef ': ignored on left of 'StackWalkerInternal::IMAGEHLP_MODULE64_V2' when no variable is declared
4>E:\GitPull Beta\common\StackWalker\StackWalker.cpp(1207): warning C4996: 'GetVersionExA': was declared deprecated
4>C:\Program Files (x86)\Windows Kits\8.1\Include\um\sysinfoapi.h(433): note: see declaration of 'GetVersionExA'
4>tinyxml.cpp
4>tinyxmlerror.cpp
4>tinyxmlparser.cpp
4>directory.cpp
4>uuid.cpp
4>E:\GitPull Beta\common\patches\uf.cpp(1887): warning C4244: '=': conversion from 'uint32' to 'float', possible loss of data
4>E:\GitPull Beta\common\patches\uf.cpp(2109): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\uf.cpp(2182): warning C4018: '<': signed/unsigned mismatch
4>E:\GitPull Beta\common\patches\uf.cpp(2785): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
4>Done building project "common.vcxproj" -- FAILED.
12>------ Build started: Project: eqlaunch, Configuration: Debug Win32 ------
13>------ Build started: Project: export_client_files, Configuration: Debug Win32 ------
14>------ Build started: Project: import_client_files, Configuration: Debug Win32 ------
15>------ Build started: Project: loginserver, Configuration: Debug Win32 ------
16>------ Build started: Project: queryserv, Configuration: Debug Win32 ------
17>------ Build started: Project: shared_memory, Configuration: Debug Win32 ------
18>------ Build started: Project: ucs, Configuration: Debug Win32 ------
19>------ Build started: Project: world, Configuration: Debug Win32 ------
15>Building Custom Rule E:/GitPull Beta/loginserver/CMakeLists.txt
12>Building Custom Rule E:/GitPull Beta/eqlaunch/CMakeLists.txt
14>Building Custom Rule E:/GitPull Beta/client_files/import/CMakeLists.txt
18>Building Custom Rule E:/GitPull Beta/ucs/CMakeLists.txt
13>Building Custom Rule E:/GitPull Beta/client_files/export/CMakeLists.txt
16>Building Custom Rule E:/GitPull Beta/queryserv/CMakeLists.txt
17>Building Custom Rule E:/GitPull Beta/shared_memory/CMakeLists.txt
13>main.cpp
14>main.cpp
12>eqlaunch.cpp
18>chatchannel.cpp
12>worldserver.cpp
12>zone_launch.cpp
18>clientlist.cpp
18>database.cpp
18>ucs.cpp
18>ucsconfig.cpp
18>worldserver.cpp
16>database.cpp
17>base_data.cpp
16>lfguild.cpp
16>queryserv.cpp
16>queryservconfig.cpp
16>worldserver.cpp
15>client.cpp
17>items.cpp
17>loot.cpp
17>main.cpp
17>npc_faction.cpp
17>spells.cpp
17>skill_caps.cpp
15>client_manager.cpp
15>config.cpp
15>database_mysql.cpp
15>database_postgresql.cpp
15>encryption.cpp
15>main.cpp
15>server_manager.cpp
19>Building Custom Rule E:/GitPull Beta/world/CMakeLists.txt
19>adventure.cpp
19>adventure_manager.cpp
19>client.cpp
19>cliententry.cpp
19>clientlist.cpp
19>console.cpp
19>eql_config.cpp
19>eqemu_api_world_data_service.cpp
13>LINK : fatal error LNK1104: cannot open file '..\..\bin\Debug\common.lib'
13>Done building project "export_client_files.vcxproj" -- FAILED.
20>------ Build started: Project: zone, Configuration: Debug Win32 ------
20>Building Custom Rule E:/GitPull Beta/zone/CMakeLists.txt
20>aa.cpp
14>LINK : fatal error LNK1104: cannot open file '..\..\bin\Debug\common.lib'
14>Done building project "import_client_files.vcxproj" -- FAILED.
20>aa_ability.cpp
20>aggro.cpp
20>aggromanager.cpp
20>api_service.cpp
20>attack.cpp
20>aura.cpp
20>beacon.cpp
20>bonuses.cpp
15>world_server.cpp
16>E:\GitPull Beta\queryserv\database.cpp(181): warning C4018: '<': signed/unsigned mismatch
19>e:\gitpull beta\world\cliententry.h(86): warning C4018: '>=': signed/unsigned mismatch (compiling source file E:\GitPull Beta\world\cliententry.cpp)
16>E:\GitPull Beta\queryserv\database.cpp(224): warning C4018: '<': signed/unsigned mismatch
16>E:\GitPull Beta\queryserv\database.cpp(258): warning C4018: '<': signed/unsigned mismatch
16>E:\GitPull Beta\queryserv\database.cpp(288): warning C4018: '<': signed/unsigned mismatch
16>E:\GitPull Beta\queryserv\database.cpp(324): warning C4018: '<': signed/unsigned mismatch
16>E:\GitPull Beta\queryserv\database.cpp(365): warning C4018: '<': signed/unsigned mismatch
19>e:\gitpull beta\world\cliententry.h(86): warning C4018: '>=': signed/unsigned mismatch (compiling source file E:\GitPull Beta\world\eqemu_api_world_data_service.cpp)
18>E:\GitPull Beta\ucs\database.cpp(449): warning C4244: 'initializing': conversion from 'time_t' to 'int', possible loss of data
15>E:\GitPull Beta\loginserver\database_mysql.cpp(165): warning C4244: '=': conversion from 'my_ulonglong' to 'unsigned int', possible loss of data
15>E:\GitPull Beta\loginserver\database_mysql.cpp(153): warning C4101: 'result': unreferenced local variable
15>E:\GitPull Beta\loginserver\database_mysql.cpp(154): warning C4101: 'row': unreferenced local variable
15>E:\GitPull Beta\loginserver\client.cpp(287): warning C4309: '=': truncation of constant value
15>E:\GitPull Beta\loginserver\client.cpp(289): warning C4309: '=': truncation of constant value
15>E:\GitPull Beta\loginserver\client.cpp(290): warning C4309: '=': truncation of constant value
15>E:\GitPull Beta\loginserver\client.cpp(291): warning C4309: '=': truncation of constant value
15>E:\GitPull Beta\loginserver\client.cpp(292): warning C4309: '=': truncation of constant value
15>E:\GitPull Beta\loginserver\client.cpp(293): warning C4309: '=': truncation of constant value
15>E:\GitPull Beta\loginserver\client.cpp(296): warning C4309: '=': truncation of constant value
15>E:\GitPull Beta\loginserver\client.cpp(264): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
15>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
18>E:\GitPull Beta\ucs\clientlist.cpp(577): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
18>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
18>E:\GitPull Beta\ucs\clientlist.cpp(596): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
18>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
18>E:\GitPull Beta\ucs\clientlist.cpp(684): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
18>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
18>E:\GitPull Beta\ucs\clientlist.cpp(1265): warning C4018: '<': signed/unsigned mismatch
18>E:\GitPull Beta\ucs\clientlist.cpp(1376): warning C4018: '<': signed/unsigned mismatch
16>E:\GitPull Beta\queryserv\lfguild.cpp(244): warning C4244: 'initializing': conversion from 'time_t' to 'uint32', possible loss of data
16>E:\GitPull Beta\queryserv\lfguild.cpp(286): warning C4244: 'initializing': conversion from 'time_t' to 'uint32', possible loss of data
19>e:\gitpull beta\world\cliententry.h(86): warning C4018: '>=': signed/unsigned mismatch (compiling source file E:\GitPull Beta\world\client.cpp)
19>e:\gitpull beta\world\cliententry.h(86): warning C4018: '>=': signed/unsigned mismatch (compiling source file E:\GitPull Beta\world\adventure_manager.cpp)
19>e:\gitpull beta\world\cliententry.h(86): warning C4018: '>=': signed/unsigned mismatch (compiling source file E:\GitPull Beta\world\adventure.cpp)
19>E:\GitPull Beta\world\adventure.cpp(393): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure.cpp(394): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
19>e:\gitpull beta\world\cliententry.h(86): warning C4018: '>=': signed/unsigned mismatch (compiling source file E:\GitPull Beta\world\clientlist.cpp)
19>E:\GitPull Beta\world\adventure_manager.cpp(386): warning C4018: '<': signed/unsigned mismatch
19>E:\GitPull Beta\world\adventure_manager.cpp(403): warning C4018: '<': signed/unsigned mismatch
19>E:\GitPull Beta\world\adventure_manager.cpp(657): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(658): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(659): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(660): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(668): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(669): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(671): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(672): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(673): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(674): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(676): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(677): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(678): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(679): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(893): warning C4244: '=': conversion from 'const float' to 'int', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(894): warning C4244: '=': conversion from 'const float' to 'int', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(895): warning C4244: '=': conversion from 'const float' to 'int', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(896): warning C4244: '=': conversion from 'const float' to 'int', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(897): warning C4244: '=': conversion from 'const float' to 'int', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(898): warning C4244: '=': conversion from 'const float' to 'int', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(899): warning C4244: '=': conversion from 'const float' to 'int', possible loss of data
19>E:\GitPull Beta\world\adventure_manager.cpp(900): warning C4244: '=': conversion from 'const float' to 'int', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\aa_ability.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\beacon.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\attack.cpp)
19>E:\GitPull Beta\world\client.cpp(427): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
19>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
15>E:\GitPull Beta\loginserver\server_manager.cpp(97): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
15>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
19>E:\GitPull Beta\world\client.cpp(670): warning C4018: '<': signed/unsigned mismatch
19>E:\GitPull Beta\world\client.cpp(683): warning C4018: '<': signed/unsigned mismatch
19>E:\GitPull Beta\world\client.cpp(791): warning C4244: 'initializing': conversion from 'time_t' to 'int', possible loss of data
19>E:\GitPull Beta\world\client.cpp(1512): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data
19>E:\GitPull Beta\world\client.cpp(1513): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data
19>E:\GitPull Beta\world\client.cpp(1461): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
19>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
19>E:\GitPull Beta\world\client.cpp(1445): warning C4101: 'ext': unreferenced local variable
19>E:\GitPull Beta\world\client.cpp(1661): warning C4018: '<': signed/unsigned mismatch
17>LINK : fatal error LNK1104: cannot open file '..\bin\Debug\common.lib'
17>Done building project "shared_memory.vcxproj" -- FAILED.
19>E:\GitPull Beta\world\clientlist.cpp(66): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
19>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
19>E:\GitPull Beta\world\clientlist.cpp(293): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
19>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\aa.cpp)
15>E:\GitPull Beta\loginserver\world_server.cpp(515): warning C4996: 'inet_addr': Use inet_pton() or InetPton() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
15>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1850): note: see declaration of 'inet_addr'
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\aggro.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\aura.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\bonuses.cpp)
19>launcher_link.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\aa.cpp)
16>LINK : fatal error LNK1104: cannot open file '..\bin\Debug\common.lib'
16>Done building project "queryserv.vcxproj" -- FAILED.
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\attack.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\aa_ability.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\api_service.cpp)
20>E:\GitPull Beta\zone\aa.cpp(988): warning C4244: 'argument': conversion from 'time_t' to 'int', possible loss of data
20>E:\GitPull Beta\zone\aa.cpp(1428): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\aa.cpp(1531): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\aa.cpp(1548): warning C4018: '<': signed/unsigned mismatch
19>launcher_list.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\aggro.cpp)
20>E:\GitPull Beta\zone\aggro.cpp(1229): warning C4018: '<': signed/unsigned mismatch
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\bonuses.cpp)
19>lfplist.cpp
20>E:\GitPull Beta\zone\bonuses.cpp(358): warning C4018: '>': signed/unsigned mismatch
12>LINK : fatal error LNK1104: cannot open file '..\bin\Debug\common.lib'
12>Done building project "eqlaunch.vcxproj" -- FAILED.
20>E:\GitPull Beta\zone\bonuses.cpp(406): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(425): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(432): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(447): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(449): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(451): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(453): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(455): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(459): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(463): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(467): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(471): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(475): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(516): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(1042): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(1197): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(1257): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(1320): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(1335): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(1416): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(160): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\bonuses.cpp(1670): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\bonuses.cpp(1687): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\bonuses.cpp(1697): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\bonuses.cpp(1721): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\bonuses.cpp(2129): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2131): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2133): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2135): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2137): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2290): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(243): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\bonuses.cpp(2600): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2620): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2630): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2642): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2652): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2662): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2673): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2684): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2975): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(2988): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(3067): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(3085): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(3114): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\bonuses.cpp(3185): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(411): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\bonuses.cpp(3220): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(450): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(473): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(496): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(509): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(521): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\bonuses.cpp(3327): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(850): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(959): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(1502): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(1504): warning C4244: '*=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(1621): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(1743): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(2018): warning C4244: '+=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(2043): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(2045): warning C4244: '*=': conversion from 'float' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(2175): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(2314): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(2363): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(2414): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(2413): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(2666): warning C4244: '*=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(2669): warning C4244: '*=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(3039): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3050): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3054): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3078): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3081): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3132): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3149): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3152): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3179): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3183): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3204): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3207): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3318): warning C4244: '+=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(3428): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(3513): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(3689): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(3737): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(3764): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(3784): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(3835): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\attack.cpp(4189): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
19>login_server.cpp
20>E:\GitPull Beta\zone\attack.cpp(4249): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(4262): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(4346): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(4374): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(4396): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(4433): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\attack.cpp(5249): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>e:\gitpull beta\zone\client.h(746): warning C4267: 'return': conversion from 'size_t' to 'uint16', possible loss of data (compiling source file E:\GitPull Beta\zone\api_service.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\aura.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\api_service.cpp)
19>login_server_list.cpp
18>LINK : fatal error LNK1104: cannot open file '..\bin\Debug\common.lib'
18>Done building project "ucs.vcxproj" -- FAILED.
19>net.cpp
19>queryserv.cpp
20>bot.cpp
19>ucs.cpp
20>bot_command.cpp
20>bot_database.cpp
20>botspellsai.cpp
20>client.cpp
15>LINK : fatal error LNK1104: cannot open file '..\bin\Debug\common.lib'
15>Done building project "loginserver.vcxproj" -- FAILED.
19>e:\gitpull beta\world\cliententry.h(86): warning C4018: '>=': signed/unsigned mismatch (compiling source file E:\GitPull Beta\world\lfplist.cpp)
20>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.13.26128\include\xutility(2440): warning C4996: 'std::copy::_Unchecked_iterators::_Deprecate': Call to 'std::copy' with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked Iterators' (compiling source file E:\GitPull Beta\zone\api_service.cpp)
19>e:\gitpull beta\world\cliententry.h(86): warning C4018: '>=': signed/unsigned mismatch (compiling source file E:\GitPull Beta\world\login_server.cpp)
20>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.13.26128\include\xutility(2440): note: see declaration of 'std::copy::_Unchecked_iterators::_Deprecate' (compiling source file E:\GitPull Beta\zone\api_service.cpp)
20>E:\GitPull Beta\submodules\websocketpp\websocketpp/frame.hpp(255): note: see reference to function template instantiation '_OutIt std::copy<uint8_t*,uint8_t*>(_InIt,_InIt,_OutIt)' being compiled
20>        with
20>        [
20>            _OutIt=uint8_t *,
20>            _InIt=uint8_t *
20>        ] (compiling source file E:\GitPull Beta\zone\api_service.cpp)
19>e:\gitpull beta\world\cliententry.h(86): warning C4018: '>=': signed/unsigned mismatch (compiling source file E:\GitPull Beta\world\net.cpp)
19>web_interface.cpp
19>web_interface_eqw.cpp
19>wguild_mgr.cpp
19>E:\GitPull Beta\world\net.cpp(541): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
19>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
19>E:\GitPull Beta\world\net.cpp(542): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
19>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
19>E:\GitPull Beta\world\net.cpp(543): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
19>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
19>E:\GitPull Beta\world\net.cpp(549): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
19>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
19>E:\GitPull Beta\world\net.cpp(554): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
19>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
19>world_config.cpp
20>client_mods.cpp
20>client_packet.cpp
19>world_console_connection.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\client.cpp)
19>worlddb.cpp
19>zonelist.cpp
20>client_process.cpp
20>command.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\client.cpp)
20>E:\GitPull Beta\zone\client.cpp(362): warning C4244: 'argument': conversion from 'time_t' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(644): warning C4244: '+=': conversion from 'time_t' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(649): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(661): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(838): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(846): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(968): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(1012): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(1060): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(1075): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(1190): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>corpse.cpp
20>E:\GitPull Beta\zone\client.cpp(1658): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1668): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1678): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1688): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1698): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1708): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1718): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1741): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1751): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1761): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1771): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1781): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1791): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(1801): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2170): warning C4244: '=': conversion from 'int64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2184): warning C4244: '=': conversion from 'int64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2185): warning C4244: '+=': conversion from 'int64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2201): warning C4244: '=': conversion from 'int64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2203): warning C4244: '+=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2205): warning C4244: '+=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2216): warning C4244: '=': conversion from 'int64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2218): warning C4244: '+=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2220): warning C4244: '+=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2222): warning C4244: '=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2238): warning C4244: 'initializing': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2240): warning C4244: '=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2248): warning C4244: '=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2250): warning C4244: '=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2258): warning C4244: '=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2262): warning C4244: '=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2273): warning C4244: '=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2277): warning C4244: '=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2471): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2479): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2614): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(2616): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(2667): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(2670): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(3087): warning C4244: 'argument': conversion from 'uint32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(3156): warning C4244: 'argument': conversion from 'uint32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(3443): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(3449): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(3458): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(3464): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(3895): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(3971): warning C4244: '=': conversion from 'const int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(3972): warning C4244: '=': conversion from 'const int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(3973): warning C4244: '=': conversion from 'const int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(4553): warning C4244: '=': conversion from 'double' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(4571): warning C4244: '=': conversion from 'double' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(5335): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(5347): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(5382): warning C4101: 'errbuf': unreferenced local variable
20>E:\GitPull Beta\zone\client.cpp(6163): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(6715): warning C4018: '<': signed/unsigned mismatch
19>zoneserver.cpp
20>E:\GitPull Beta\zone\client.cpp(7753): warning C4101: 'faction_to_use_for_messaging': unreferenced local variable
20>E:\GitPull Beta\zone\client.cpp(8102): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(8121): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(8208): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client.cpp(8461): warning C4244: 'return': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(8497): warning C4305: 'argument': truncation from 'RoF2::invslot::enum_::InventorySlots' to 'bool'
20>E:\GitPull Beta\zone\client.cpp(8504): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client.cpp(8607): warning C4244: 'return': conversion from 'time_t' to 'int', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(156): warning C4244: 'initializing': conversion from 'time_t' to 'int', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(176): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(177): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(178): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(179): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(198): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(199): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(200): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(359): warning C4244: '=': conversion from 'uint32' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(378): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(379): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(380): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(381): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(384): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(385): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
19>E:\GitPull Beta\world\worlddb.cpp(386): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>data_bucket.cpp
19>E:\GitPull Beta\world\worlddb.cpp(695): warning C4018: '<': signed/unsigned mismatch
20>doors.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\client_mods.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\client_packet.cpp)
19>e:\gitpull beta\world\cliententry.h(86): warning C4018: '>=': signed/unsigned mismatch (compiling source file E:\GitPull Beta\world\zoneserver.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\command.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\client_mods.cpp)
20>E:\GitPull Beta\zone\client_mods.cpp(262): warning C4244: 'initializing': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(264): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(268): warning C4244: 'initializing': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(290): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(324): warning C4244: '=': conversion from 'float' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(327): warning C4244: '+=': conversion from 'float' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(490): warning C4244: '+=': conversion from 'double' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(624): warning C4244: '=': conversion from 'double' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(657): warning C4244: '=': conversion from 'double' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(767): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(896): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_mods.cpp(1598): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_mods.cpp(1637): warning C4244: '=': conversion from 'double' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_mods.cpp(1718): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_mods.cpp(1731): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\client_process.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\corpse.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\client_packet.cpp)
20>effects.cpp
20>E:\GitPull Beta\zone\client_packet.cpp(875): warning C4244: 'argument': conversion from 'time_t' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(1591): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_packet.cpp(1185): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
20>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
20>E:\GitPull Beta\zone\client_packet.cpp(1195): warning C4101: 'i': unreferenced local variable
20>E:\GitPull Beta\zone\client_packet.cpp(2198): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_packet.cpp(2684): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_packet.cpp(3041): warning C4806: '!=': unsafe operation: no value of type 'bool' promoted to type 'int' can equal the given constant
20>E:\GitPull Beta\zone\client_packet.cpp(3400): warning C4244: '=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(3413): warning C4244: '=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(4516): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(4518): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(4527): warning C4244: 'argument': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(4529): warning C4244: 'argument': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(5135): warning C4244: '=': conversion from 'double' to 'int16', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(5245): warning C4244: 'initializing': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(5246): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(5530): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(5608): warning C4244: 'argument': conversion from 'float' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(5611): warning C4244: 'initializing': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(5972): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(5973): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(5975): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(6231): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(6232): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(6233): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(7963): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(7964): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\command.cpp)
20>E:\GitPull Beta\zone\client_packet.cpp(12333): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(12334): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(12335): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(12562): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_packet.cpp(12569): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_packet.cpp(12590): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(12592): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(12844): warning C4244: 'argument': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(12847): warning C4244: 'argument': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(12908): warning C4309: 'argument': truncation of constant value
20>E:\GitPull Beta\zone\client_packet.cpp(13053): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(13054): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(13346): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_packet.cpp(13348): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_packet.cpp(13743): warning C4267: '=': conversion from 'size_t' to 'uint16', possible loss of data
20>E:\GitPull Beta\zone\client_packet.cpp(13799): warning C4267: '=': conversion from 'size_t' to 'uint16', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\client_process.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\doors.cpp)
20>E:\GitPull Beta\zone\client_process.cpp(259): warning C4244: 'initializing': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_process.cpp(260): warning C4244: 'initializing': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(1119): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(1175): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(1354): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(1851): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(1852): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(1854): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(1856): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(1858): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(1860): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_process.cpp(870): warning C4244: 'argument': conversion from 'float' to 'uint32', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\corpse.cpp)
20>E:\GitPull Beta\zone\client_process.cpp(873): warning C4244: 'argument': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(2185): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(2194): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\client_process.cpp(911): warning C4244: 'argument': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\client_process.cpp(914): warning C4244: 'argument': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(2477): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(2590): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(603): note: see declaration of 'strupr'
20>E:\GitPull Beta\zone\command.cpp(2595): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(603): note: see declaration of 'strupr'
20>E:\GitPull Beta\zone\command.cpp(2803): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(2817): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(2887): warning C4244: '=': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(2895): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(2897): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(3064): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(3490): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\client_process.cpp(1408): warning C4244: '=': conversion from 'float' to 'uint64', possible loss of data
20>E:\GitPull Beta\zone\client_process.cpp(1412): warning C4244: '=': conversion from 'float' to 'uint64', possible loss of data
20>E:\GitPull Beta\zone\client_process.cpp(1419): warning C4244: '-=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_process.cpp(1426): warning C4244: '+=': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_process.cpp(1436): warning C4244: 'argument': conversion from 'uint64' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\client_process.cpp(1469): warning C4244: '=': conversion from 'uint64' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(4964): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(4979): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(4989): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(4990): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(4991): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(5033): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(5037): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(5184): warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(552): note: see declaration of 'strdup'
20>E:\GitPull Beta\zone\command.cpp(5207): warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(552): note: see declaration of 'strdup'
20>E:\GitPull Beta\zone\command.cpp(5227): warning C4996: 'strdup': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strdup. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(552): note: see declaration of 'strdup'
20>E:\GitPull Beta\zone\command.cpp(5510): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(5509): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(5508): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(6845): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(603): note: see declaration of 'strupr'
20>E:\GitPull Beta\zone\command.cpp(6850): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(603): note: see declaration of 'strupr'
20>E:\GitPull Beta\zone\corpse.cpp(152): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\corpse.cpp(219): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\corpse.cpp(412): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(8204): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\corpse.cpp(586): warning C4244: '=': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(9666): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(9667): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(9668): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(9669): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(9677): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(9748): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(9834): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\command.cpp(10048): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10213): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10215): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10220): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10225): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10257): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10439): warning C4244: '=': conversion from 'float' to 'uint16', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10444): warning C4244: '=': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10694): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10695): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10696): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10697): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(10701): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(9617): warning C4996: 'strlwr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strlwr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(574): note: see declaration of 'strlwr'
20>E:\GitPull Beta\zone\command.cpp(9844): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(603): note: see declaration of 'strupr'
20>E:\GitPull Beta\zone\corpse.cpp(1564): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\corpse.cpp(1570): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\command.cpp(9985): warning C4996: 'strlwr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strlwr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(574): note: see declaration of 'strlwr'
20>E:\GitPull Beta\zone\command.cpp(9986): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(603): note: see declaration of 'strupr'
20>E:\GitPull Beta\zone\command.cpp(10859): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(603): note: see declaration of 'strupr'
20>E:\GitPull Beta\zone\command.cpp(10868): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(603): note: see declaration of 'strupr'
20>E:\GitPull Beta\zone\command.cpp(11286): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\command.cpp(11304): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\command.cpp(11596): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(11631): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(11667): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(11709): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(11758): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\command.cpp(11852): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\command.cpp(12326): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12331): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12341): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12346): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12351): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12356): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12361): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12366): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12371): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12376): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12381): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12386): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12391): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>E:\GitPull Beta\zone\command.cpp(12396): warning C4244: '=': conversion from 'unsigned __int64' to '::size_t', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\doors.cpp)
20>embparser.cpp
20>embparser_api.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\effects.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\effects.cpp)
20>E:\GitPull Beta\zone\effects.cpp(637): warning C4018: '>': signed/unsigned mismatch
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\embparser.cpp)
20>embperl.cpp
20>embxs.cpp
20>encounter.cpp
20>entity.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\embparser_api.cpp)
20>exp.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\embparser.cpp)
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\embparser.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\embparser.cpp)
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\embperl.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\embperl.cpp)
20>fastmath.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\embparser_api.cpp)
20>E:\GitPull Beta\zone\fastmath.cpp(17): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>fearpath.cpp
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\embparser_api.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\embparser_api.cpp)
20>E:\GitPull Beta\zone\embparser_api.cpp(205): warning C4244: 'argument': conversion from 'unsigned long' to 'int16', possible loss of data
20>E:\GitPull Beta\zone\embparser_api.cpp(2294): warning C4101: 'task': unreferenced local variable
20>E:\GitPull Beta\zone\embparser_api.cpp(2294): warning C4101: 'activity': unreferenced local variable
20>forage.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\embxs.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\encounter.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\entity.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\exp.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\embxs.cpp)
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\embxs.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\embxs.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\entity.cpp)
20>groups.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\exp.cpp)
20>guild.cpp
20>E:\GitPull Beta\zone\exp.cpp(66): warning C4244: 'initializing': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(193): warning C4244: '*=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(268): warning C4244: '=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(280): warning C4244: '*=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(310): warning C4244: '*=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(333): warning C4244: 'initializing': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(378): warning C4244: 'initializing': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(455): warning C4244: '=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(465): warning C4244: '*=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(719): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(898): warning C4244: 'initializing': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(965): warning C4244: '*=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\exp.cpp(996): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\fearpath.cpp)
20>E:\GitPull Beta\zone\entity.cpp(538): warning C4996: 'inet_ntoa': Use inet_ntop() or InetNtop() instead or define _WINSOCK_DEPRECATED_NO_WARNINGS to disable deprecated API warnings
20>C:\Program Files (x86)\Windows Kits\8.1\Include\um\winsock2.h(1868): note: see declaration of 'inet_ntoa'
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\forage.cpp)
20>E:\GitPull Beta\zone\entity.cpp(2822): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\entity.cpp(3186): warning C4244: 'initializing': conversion from 'int32' to 'float', possible loss of data
20>guild_mgr.cpp
20>E:\GitPull Beta\zone\entity.cpp(3775): warning C4244: '=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\entity.cpp(4051): warning C4267: 'initializing': conversion from 'size_t' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\entity.cpp(4603): warning C4244: 'initializing': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\entity.cpp(4647): warning C4244: '=': conversion from 'float' to 'uint32', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\forage.cpp)
20>E:\GitPull Beta\zone\forage.cpp(186): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\forage.cpp(187): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>hate_list.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\groups.cpp)
20>heal_rotation.cpp
20>horse.cpp
20>inventory.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\guild.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\guild_mgr.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\groups.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\guild.cpp)
20>loottables.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\guild_mgr.cpp)
20>E:\GitPull Beta\zone\guild_mgr.cpp(427): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\guild_mgr.cpp(430): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\guild_mgr.cpp(1262): warning C4018: '<=': signed/unsigned mismatch
20>lua_bit.cpp
20>lua_corpse.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\hate_list.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\inventory.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\hate_list.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\horse.cpp)
20>E:\GitPull Beta\zone\hate_list.cpp(259): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\hate_list.cpp(639): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\hate_list.cpp(718): warning C4018: '>': signed/unsigned mismatch
20>lua_client.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\horse.cpp)
20>E:\GitPull Beta\zone\horse.cpp(104): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\inventory.cpp)
20>lua_door.cpp
20>E:\GitPull Beta\zone\inventory.cpp(723): warning C4267: '=': conversion from 'size_t' to 'uint16', possible loss of data
20>E:\GitPull Beta\zone\inventory.cpp(1105): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(1119): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(1147): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(1477): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\inventory.cpp(1481): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\inventory.cpp(1625): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\inventory.cpp(1934): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\inventory.cpp(1970): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\inventory.cpp(2295): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(2339): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(2479): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(2596): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(2607): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(2699): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(2715): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(3221): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(3282): warning C4554: '&': check operator precedence for possible error; use parentheses to clarify precedence
20>E:\GitPull Beta\zone\inventory.cpp(3373): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\inventory.cpp(3445): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\inventory.cpp(3446): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\inventory.cpp(3475): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\inventory.cpp(3476): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\loottables.cpp)
20>lua_encounter.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\loottables.cpp)
20>lua_entity.cpp
20>lua_entity_list.cpp
20>lua_general.cpp
20>lua_group.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_corpse.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_corpse.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_client.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_door.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_client.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_encounter.cpp)
20>E:\GitPull Beta\zone\lua_client.cpp(360): warning C4244: 'return': conversion from 'time_t' to 'int', possible loss of data
20>lua_hate_list.cpp
20>lua_inventory.cpp
20>lua_item.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_entity_list.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_general.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_group.cpp)
20>lua_iteminst.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_entity_list.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_general.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_group.cpp)
20>lua_mob.cpp
20>lua_mod.cpp
20>lua_npc.cpp
20>lua_object.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_hate_list.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_inventory.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_item.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_hate_list.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_inventory.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_item.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_iteminst.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_iteminst.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_mob.cpp)
20>lua_packet.cpp
20>lua_parser.cpp
20>lua_parser_events.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_mob.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_mod.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_mod.cpp)
20>lua_raid.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_npc.cpp)
20>lua_spawn.cpp
20>lua_spell.cpp
20>lua_stat_bonuses.cpp
20>global_loot_manager.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\global_loot_manager.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_parser_events.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_packet.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_parser.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\global_loot_manager.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_parser_events.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_packet.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_parser.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_raid.cpp)
20>map.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_raid.cpp)
20>merc.cpp
20>mob.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\lua_spawn.cpp)
20>mob_ai.cpp
20>mob_appearance.cpp
20>mob_movement_manager.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\map.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\merc.cpp)
20>mob_info.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\mob.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\merc.cpp)
20>E:\GitPull Beta\zone\merc.cpp(377): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(425): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(444): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(451): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(468): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(470): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(472): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(474): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(476): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(482): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(488): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(494): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(500): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(506): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(567): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(855): warning C4244: '=': conversion from 'float' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(860): warning C4244: '+=': conversion from 'float' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(1188): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(1489): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(1824): warning C4244: 'argument': conversion from 'const int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(1825): warning C4244: 'argument': conversion from 'const int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(1878): warning C4244: 'argument': conversion from 'const int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(1879): warning C4244: 'argument': conversion from 'const int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(1880): warning C4244: 'argument': conversion from 'const int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(1881): warning C4244: 'argument': conversion from 'const int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(1890): warning C4244: 'argument': conversion from 'const int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(2075): warning C4244: '=': conversion from 'float' to 'int8', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(2479): warning C4244: 'initializing': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(2501): warning C4244: 'initializing': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(2642): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(2741): warning C4244: '+=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(2744): warning C4244: '-=': conversion from 'float' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(2749): warning C4018: '<': signed/unsigned mismatch
20>mod_functions.cpp
20>E:\GitPull Beta\zone\merc.cpp(4078): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(4111): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(4121): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(4131): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\merc.cpp(4161): warning C4244: 'initializing': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(4490): warning C4244: 'argument': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(5588): warning C4244: 'initializing': conversion from 'time_t' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\merc.cpp(5670): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\mob_appearance.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\mob_ai.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\mob_movement_manager.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\mob.cpp)
20>E:\GitPull Beta\zone\mob.cpp(835): warning C4244: '+=': conversion from 'float' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\mob.cpp(1608): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\mob_ai.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\mob_appearance.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\mob_movement_manager.cpp)
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(50): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(68): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(81): warning C4244: '+=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(142): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(193): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(196): warning C4244: 'argument': conversion from 'double' to 'const float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(212): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(215): warning C4244: 'argument': conversion from 'double' to 'const float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(281): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(320): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(323): warning C4244: 'argument': conversion from 'double' to 'const float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(335): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(338): warning C4244: 'argument': conversion from 'double' to 'const float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(365): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(368): warning C4244: 'argument': conversion from 'double' to 'const float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(369): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_ai.cpp(1228): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_ai.cpp(1286): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_ai.cpp(1320): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_ai.cpp(1933): warning C4267: '=': conversion from 'size_t' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\mob_ai.cpp(1951): warning C4244: 'argument': conversion from 'const uint32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_ai.cpp(1988): warning C4244: 'argument': conversion from 'const uint32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_ai.cpp(2081): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\mob_ai.cpp(2110): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(606): warning C4244: 'argument': conversion from 'double' to 'const float', possible loss of data
20>E:\GitPull Beta\zone\mob_movement_manager.cpp(675): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\mob_ai.cpp(2660): warning C4018: '<': signed/unsigned mismatch
20>net.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\mob_info.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\mod_functions.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\mob_info.cpp)
20>npc.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\mod_functions.cpp)
20>npc_ai.cpp
20>npc_scale_manager.cpp
20>object.cpp
20>oriented_bounding_box.cpp
20>pathfinder_interface.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\net.cpp)
20>pathfinder_nav_mesh.cpp
20>e:\gitpull beta\zone\client.h(746): warning C4267: 'return': conversion from 'size_t' to 'uint16', possible loss of data (compiling source file E:\GitPull Beta\zone\net.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\net.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\npc.cpp)
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\net.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\net.cpp)
20>pathfinder_null.cpp
20>pathing.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\npc.cpp)
20>E:\GitPull Beta\zone\npc.cpp(166): warning C4244: '=': conversion from 'const int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(167): warning C4244: '=': conversion from 'const int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(198): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(199): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\npc_scale_manager.cpp)
20>E:\GitPull Beta\zone\npc.cpp(1227): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\npc.cpp(2291): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2292): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2298): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2299): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2335): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2339): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2347): warning C4244: '=': conversion from 'double' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2351): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2355): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2855): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2856): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2870): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\npc.cpp(2871): warning C4244: '=': conversion from 'double' to 'int', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\object.cpp)
20>perl_client.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\pathfinder_interface.cpp)
20>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.13.26128\include\xutility(2440): warning C4996: 'std::copy::_Unchecked_iterators::_Deprecate': Call to 'std::copy' with parameters that may be unsafe - this call relies on the caller to check that the passed values are correct. To disable this warning, use -D_SCL_SECURE_NO_WARNINGS. See documentation on how to use Visual C++ 'Checked Iterators' (compiling source file E:\GitPull Beta\zone\net.cpp)
20>C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Tools\MSVC\14.13.26128\include\xutility(2440): note: see declaration of 'std::copy::_Unchecked_iterators::_Deprecate' (compiling source file E:\GitPull Beta\zone\net.cpp)
20>E:\GitPull Beta\submodules\websocketpp\websocketpp/frame.hpp(255): note: see reference to function template instantiation '_OutIt std::copy<uint8_t*,uint8_t*>(_InIt,_InIt,_OutIt)' being compiled
20>        with
20>        [
20>            _OutIt=uint8_t *,
20>            _InIt=uint8_t *
20>        ] (compiling source file E:\GitPull Beta\zone\net.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\pathfinder_nav_mesh.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\object.cpp)
20>E:\GitPull Beta\zone\object.cpp(453): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\object.cpp(454): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\object.cpp(711): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\object.cpp(712): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\object.cpp(713): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\object.cpp(714): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\object.cpp(715): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\object.cpp(716): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\pathfinder_interface.cpp)
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_client.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_client.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\pathfinder_nav_mesh.cpp)
20>perl_doors.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\pathing.cpp)
20>perl_entity.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_client.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\pathing.cpp)
20>perl_groups.cpp
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_doors.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_doors.cpp)
20>perl_hateentry.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_client.cpp)
20>E:\GitPull Beta\zone\perl_client.cpp(3087): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\perl_client.cpp(4302): warning C4244: '=': conversion from 'NV' to 'float', possible loss of data
20>E:\GitPull Beta\zone\perl_client.cpp(4303): warning C4244: '=': conversion from 'NV' to 'float', possible loss of data
20>E:\GitPull Beta\zone\perl_client.cpp(4304): warning C4244: '=': conversion from 'NV' to 'float', possible loss of data
20>E:\GitPull Beta\zone\perl_client.cpp(4898): warning C4244: 'initializing': conversion from 'NV' to 'float', possible loss of data
20>E:\GitPull Beta\zone\perl_client.cpp(4899): warning C4244: 'initializing': conversion from 'NV' to 'float', possible loss of data
20>E:\GitPull Beta\zone\perl_client.cpp(4900): warning C4244: 'initializing': conversion from 'NV' to 'float', possible loss of data
20>E:\GitPull Beta\zone\perl_client.cpp(5387): warning C4244: '=': conversion from 'uint64' to 'int', possible loss of data
20>E:\GitPull Beta\zone\perl_client.cpp(5413): warning C4244: '=': conversion from 'uint64' to 'int', possible loss of data
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_entity.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_entity.cpp)
20>E:\GitPull Beta\zone\perl_client.cpp(6076): warning C4244: '=': conversion from 'uint16' to 'uint8', possible loss of data
20>perl_mob.cpp
20>perl_npc.cpp
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_groups.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_groups.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_doors.cpp)
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_mob.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_mob.cpp)
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_npc.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_npc.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_groups.cpp)
20>perl_object.cpp
20>perl_perlpacket.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_hateentry.cpp)
20>perl_player_corpse.cpp
20>perl_questitem.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_mob.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_npc.cpp)
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_object.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_object.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_hateentry.cpp)
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_hateentry.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_hateentry.cpp)
20>perl_raids.cpp
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_perlpacket.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_perlpacket.cpp)
20>E:\GitPull Beta\zone\perl_npc.cpp(2063): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>perlpacket.cpp
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_player_corpse.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_player_corpse.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_mob.cpp)
20>E:\GitPull Beta\zone\perl_mob.cpp(1409): warning C4244: '=': conversion from 'int16' to 'int8', possible loss of data
20>E:\GitPull Beta\zone\perl_mob.cpp(1624): warning C4244: '=': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\perl_mob.cpp(2269): warning C4244: 'initializing': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\perl_mob.cpp(2308): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\perl_mob.cpp(2333): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\perl_mob.cpp(3530): warning C4244: '=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\perl_mob.cpp(5547): warning C4244: '=': conversion from 'float' to 'int8', possible loss of data
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_raids.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_raids.cpp)
20>petitions.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_player_corpse.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_questitem.cpp)
20>pets.cpp
20>position.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_raids.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_questitem.cpp)
20>C:\perl\lib\CORE\sys/socket.h(34): warning C4005: 'ENOTSOCK': macro redefinition (compiling source file E:\GitPull Beta\zone\perl_questitem.cpp)
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\errno.h(112): note: see previous definition of 'ENOTSOCK' (compiling source file E:\GitPull Beta\zone\perl_questitem.cpp)
20>E:\GitPull Beta\zone\perl_questitem.cpp(208): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_player_corpse.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\perlpacket.cpp)
20>qglobals.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\perl_raids.cpp)
20>queryserv.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\perlpacket.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\petitions.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\pets.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\petitions.cpp)
20>questmgr.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\pets.cpp)
20>E:\GitPull Beta\zone\pets.cpp(242): warning C4244: '*=': conversion from 'float' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\pets.cpp(244): warning C4244: '*=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\pets.cpp(245): warning C4244: '+=': conversion from 'float' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\pets.cpp(246): warning C4244: '=': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\pets.cpp(247): warning C4244: '=': conversion from 'float' to 'uint32', possible loss of data
20>quest_parser_collection.cpp
20>raids.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\qglobals.cpp)
20>raycast_mesh.cpp
20>spawn2.cpp
20>spawngroup.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\qglobals.cpp)
20>special_attacks.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\quest_parser_collection.cpp)
20>spell_effects.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\questmgr.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\raids.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\questmgr.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\spawngroup.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\quest_parser_collection.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\spawn2.cpp)
20>spells.cpp
20>E:\GitPull Beta\zone\questmgr.cpp(1345): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(1344): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(1343): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(1832): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(1833): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(1834): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(1990): warning C4244: 'argument': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(2013): warning C4244: 'argument': conversion from 'int' to 'float', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\raids.cpp)
20>E:\GitPull Beta\zone\questmgr.cpp(3202): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(3206): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(3210): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(3233): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(3235): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(3237): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(3239): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(3241): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(3243): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(3245): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\questmgr.cpp(3247): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\raids.cpp(1796): warning C4806: '==': unsafe operation: no value of type 'bool' promoted to type 'unsigned int' can equal the given constant
20>E:\GitPull Beta\zone\spawngroup.cpp(158): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawngroup.cpp(157): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawngroup.cpp(207): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawngroup.cpp(206): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\spawn2.cpp)
20>E:\GitPull Beta\zone\spawn2.cpp(464): warning C4018: '<=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\spawn2.cpp(511): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawn2.cpp(512): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawn2.cpp(525): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawn2.cpp(524): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawn2.cpp(523): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawn2.cpp(522): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawn2.cpp(568): warning C4018: '<=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\spawn2.cpp(620): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawn2.cpp(619): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawn2.cpp(618): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawn2.cpp(617): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spawn2.cpp(659): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\spell_effects.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\special_attacks.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\special_attacks.cpp)
20>E:\GitPull Beta\zone\special_attacks.cpp(1036): warning C4244: '+=': conversion from 'double' to 'uint16', possible loss of data
20>E:\GitPull Beta\zone\special_attacks.cpp(1179): warning C4244: 'initializing': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\special_attacks.cpp(1180): warning C4244: 'initializing': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\special_attacks.cpp(1686): warning C4244: 'argument': conversion from 'float' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\special_attacks.cpp(1776): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\special_attacks.cpp(1792): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\special_attacks.cpp(1829): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\special_attacks.cpp(1830): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\special_attacks.cpp(1873): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\spell_effects.cpp)
20>E:\GitPull Beta\zone\spell_effects.cpp(2244): warning C4244: '=': conversion from 'const int32' to 'float', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\spells.cpp)
20>tasks.cpp
20>titles.cpp
20>tradeskills.cpp
20>trading.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\spells.cpp)
20>trap.cpp
20>E:\GitPull Beta\zone\spells.cpp(378): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(544): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(763): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(766): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(769): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(788): warning C4244: '-=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(792): warning C4244: '-=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(796): warning C4244: '-=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(801): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(806): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(924): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(1134): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(2664): warning C4244: '=': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(2666): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(2687): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(3230): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\spells.cpp(3230): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\spells.cpp(3495): warning C4244: '=': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(3514): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(3640): warning C4307: '+': integral constant overflow
20>E:\GitPull Beta\zone\spells.cpp(3789): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(3971): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(4028): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\spells.cpp(4648): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(4658): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(4706): warning C4244: '+=': conversion from 'double' to 'int', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(5263): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\spells.cpp(5513): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(5514): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(5515): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\spells.cpp(5595): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\spells.cpp(5628): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\spells.cpp(5725): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>tribute.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\tasks.cpp)
20>tune.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\tradeskills.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\titles.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\trading.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\tasks.cpp)
20>E:\GitPull Beta\zone\tasks.cpp(1394): warning C4244: '=': conversion from 'time_t' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(1472): warning C4244: '=': conversion from 'time_t' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(2031): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(2339): warning C4244: 'initializing': conversion from 'time_t' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(2362): warning C4244: 'initializing': conversion from 'time_t' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(2421): warning C4244: 'initializing': conversion from 'time_t' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(3295): warning C4244: '=': conversion from 'time_t' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(3507): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(3508): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(3509): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(3510): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(3511): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tasks.cpp(3512): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\titles.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\trap.cpp)
20>E:\GitPull Beta\zone\titles.cpp(183): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\titles.cpp(186): warning C4018: '>': signed/unsigned mismatch
20>water_map.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\tradeskills.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\trading.cpp)
20>E:\GitPull Beta\zone\tradeskills.cpp(877): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(880): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(883): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(886): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(889): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(892): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(895): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(898): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(901): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(904): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(933): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(935): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(966): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(1077): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tradeskills.cpp(1080): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\trading.cpp(114): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\trading.cpp(121): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\trading.cpp(178): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\trading.cpp(291): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\trading.cpp(898): warning C4244: 'argument': conversion from 'int16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\trading.cpp(1367): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\trading.cpp(1427): warning C4244: '=': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\trading.cpp(1464): warning C4244: 'argument': conversion from 'uint16' to 'int8', possible loss of data
20>E:\GitPull Beta\zone\trading.cpp(2682): warning C4018: '<=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\trading.cpp(3025): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(603): note: see declaration of 'strupr'
20>E:\GitPull Beta\zone\trading.cpp(3035): warning C4996: 'strupr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strupr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(603): note: see declaration of 'strupr'
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\trap.cpp)
20>E:\GitPull Beta\zone\trap.cpp(144): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\trap.cpp(148): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\trap.cpp(431): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\trap.cpp(432): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\trap.cpp(511): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\trap.cpp(512): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\tribute.cpp)
20>water_map_v1.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\tune.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\tribute.cpp)
20>water_map_v2.cpp
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\tune.cpp)
20>E:\GitPull Beta\zone\tune.cpp(259): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(279): warning C4244: 'initializing': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(284): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(312): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(343): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(350): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(352): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(354): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(357): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(359): warning C4244: '=': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(367): warning C4244: 'initializing': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(370): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(373): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(377): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(379): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(383): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(385): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(388): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(390): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(393): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(397): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(400): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(402): warning C4244: '*=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(406): warning C4244: '=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(413): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(418): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(446): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(448): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(453): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(455): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(503): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(504): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(509): warning C4244: 'initializing': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(513): warning C4244: '-=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(517): warning C4244: 'initializing': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(521): warning C4244: '+=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(529): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(530): warning C4244: '-=': conversion from 'float' to 'int32', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(545): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(547): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(550): warning C4244: '-=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(553): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(554): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(559): warning C4244: 'initializing': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(563): warning C4244: '+=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(567): warning C4244: 'initializing': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(571): warning C4244: '-=': conversion from 'float' to 'int', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(862): warning C4244: '+=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(867): warning C4244: '+=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(872): warning C4244: '+=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\tune.cpp(877): warning C4244: '+=': conversion from 'double' to 'float', possible loss of data
20>waypoints.cpp
20>worldserver.cpp
20>xtargetautohaters.cpp
20>zone.cpp
20>zone_config.cpp
20>zonedb.cpp
20>zoning.cpp
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\waypoints.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\worldserver.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\xtargetautohaters.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\zone.cpp)
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\zonedb.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\waypoints.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\worldserver.cpp)
20>E:\GitPull Beta\zone\waypoints.cpp(134): warning C4996: 'itoa': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _itoa. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\stdlib.h(1316): note: see declaration of 'itoa'
20>E:\GitPull Beta\zone\waypoints.cpp(363): warning C4018: '<=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\waypoints.cpp(365): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\waypoints.cpp(373): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\waypoints.cpp(536): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\waypoints.cpp(537): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\waypoints.cpp(538): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\waypoints.cpp(541): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\waypoints.cpp(588): warning C4244: 'argument': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\waypoints.cpp(593): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\waypoints.cpp(629): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
20>E:\GitPull Beta\zone\waypoints.cpp(878): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\waypoints.cpp(879): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\waypoints.cpp(880): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\waypoints.cpp(882): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\xtargetautohaters.cpp)
20>E:\GitPull Beta\zone\worldserver.cpp(148): warning C4996: 'getpid': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _getpid. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\process.h(353): note: see declaration of 'getpid'
20>E:\GitPull Beta\zone\worldserver.cpp(149): warning C4996: 'getpid': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _getpid. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\process.h(353): note: see declaration of 'getpid'
20>E:\GitPull Beta\zone\worldserver.cpp(203): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\worldserver.cpp(217): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\worldserver.cpp(220): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\worldserver.cpp(230): warning C4244: 'argument': conversion from 'uint16' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\worldserver.cpp(1979): warning C4244: '=': conversion from 'int16' to 'uint8', possible loss of data
20>e:\gitpull beta\zone\mob.h(588): warning C4244: 'return': conversion from 'int' to 'float', possible loss of data (compiling source file E:\GitPull Beta\zone\zoning.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\zone.cpp)
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\zonedb.cpp)
20>E:\GitPull Beta\zone\zonedb.cpp(45): warning C4018: '<=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\zonedb.cpp(53): warning C4018: '<=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\zonedb.cpp(190): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(191): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(194): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(196): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(197): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(198): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(199): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(200): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(201): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(202): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(206): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(245): warning C4244: '=': conversion from 'double' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(310): warning C4018: '<=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\zonedb.cpp(1146): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(1147): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(1148): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(1149): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(1501): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(1502): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(1503): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(1504): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(1961): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\zonedb.cpp(1968): warning C4018: '>': signed/unsigned mismatch
20>E:\GitPull Beta\zone\zonedb.cpp(2032): warning C4244: 'initializing': conversion from 'time_t' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2113): warning C4244: 'return': conversion from 'int64' to 'int', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2117): warning C4244: 'initializing': conversion from 'time_t' to 'uint32', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(198): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(199): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(200): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(201): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(241): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(242): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(243): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(244): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(258): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(259): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(260): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2536): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2542): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2576): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2680): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2681): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2858): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2911): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2912): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(2959): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(3012): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(479): warning C4244: '=': conversion from 'unsigned long' to 'int16', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(480): warning C4244: '=': conversion from 'unsigned long' to 'int8', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(481): warning C4244: '=': conversion from 'unsigned long' to 'uint16', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(483): warning C4244: '=': conversion from 'unsigned long' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(546): warning C4244: '=': conversion from 'unsigned long' to 'int16', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(547): warning C4244: '=': conversion from 'unsigned long' to 'int8', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(548): warning C4244: '=': conversion from 'unsigned long' to 'uint16', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(550): warning C4244: '=': conversion from 'unsigned long' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(3605): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\zonedb.cpp(3630): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\zonedb.cpp(3645): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\zonedb.cpp(3659): warning C4244: 'initializing': conversion from 'unsigned long' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(3698): warning C4018: '<': signed/unsigned mismatch
20>E:\GitPull Beta\zone\zonedb.cpp(3873): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(3895): warning C4018: '>=': signed/unsigned mismatch
20>E:\GitPull Beta\zone\zonedb.cpp(3907): warning C4244: 'initializing': conversion from 'unsigned long' to 'uint8', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(638): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(639): warning C4244: 'initializing': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zonedb.cpp(4509): warning C4244: '=': conversion from 'int' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(793): warning C4996: 'strlwr': The POSIX name for this item is deprecated. Instead, use the ISO C and C++ conformant name: _strlwr. See online help for details.
20>C:\Program Files (x86)\Windows Kits\10\Include\10.0.10240.0\ucrt\string.h(574): note: see declaration of 'strlwr'
20>E:\GitPull Beta\zone\zone.cpp(1720): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(1721): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(1722): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(1723): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(1724): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(1725): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(1727): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>E:\GitPull Beta\zone\zone.cpp(1728): warning C4244: '=': conversion from 'double' to 'float', possible loss of data
20>e:\gitpull beta\zone\client.h(1290): warning C4244: '=': conversion from 'time_t' to 'uint32', possible loss of data (compiling source file E:\GitPull Beta\zone\zoning.cpp)
20>E:\GitPull Beta\zone\zoning.cpp(726): warning C4244: 'argument': conversion from 'int32' to 'float', possible loss of data
19>LINK : fatal error LNK1104: cannot open file '..\bin\Debug\common.lib'
19>Done building project "world.vcxproj" -- FAILED.
20>LINK : fatal error LNK1104: cannot open file '..\bin\Debug\common.lib'
20>Done building project "zone.vcxproj" -- FAILED.
21>------ Build started: Project: ALL_BUILD, Configuration: Debug Win32 ------
21>Building Custom Rule E:/GitPull Beta/CMakeLists.txt
========== Build: 11 succeeded, 10 failed, 0 up-to-date, 0 skipped ==========
__________________
Hanging out at Antonica.World
Reply With Quote
  #7  
Old 07-20-2019, 10:27 AM
joligario's Avatar
joligario
Developer
 
Join Date: Mar 2003
Posts: 1,490
Default

Make sure your VS 2017 is fully updated. Recommend 2019.

Maybe delete your build folder and start fresh cmake configure. Make sure you pick Win32 (based off your log) on the initial screen otherwise blank means x64. Keep hitting configure until all red goes away, then generate.
Reply With Quote
  #8  
Old 07-20-2019, 12:30 PM
FievelMousey
Hill Giant
 
Join Date: Jan 2004
Posts: 140
Default

Update your VS install to newest released you be FIXED and no need go to 2019 2017 works perefect
Reply With Quote
  #9  
Old 07-20-2019, 01:38 PM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

Quote:
Originally Posted by joligario View Post
Make sure your VS 2017 is fully updated. Recommend 2019.

Maybe delete your build folder and start fresh cmake configure. Make sure you pick Win32 (based off your log) on the initial screen otherwise blank means x64. Keep hitting configure until all red goes away, then generate.
Hey thanks guys. Yes, I always clear the build folder and cache (anything), after each build, and also run the configure twice, then generate. But something I didn't realize is that we could use another version of VS. I always stuck to the same one, (2017 community) since the project upgraded to that, because I thought it was required always (at one point). I'll get that all updated then.

EDIT:
========== Build: 21 succeeded, 0 failed, 0 up-to-date, 0 skipped ==========

Definately working good now. Got VS 2017 updated to 15.9.14 Thanks a lot.
Eventually I'd like to get everything all upgraded/converted over to most current software, etc., that is compatible with this project. 64-bit and all. (I'm still living back in 2010) But...but....that's work .....
__________________
Hanging out at Antonica.World
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

   

All times are GMT -4. The time now is 05:13 AM.


 

Everquest is a registered trademark of Daybreak Game Company LLC.
EQEmulator is not associated or affiliated in any way with Daybreak Game Company LLC.
Except where otherwise noted, this site is licensed under a Creative Commons License.
       
Powered by vBulletin®, Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Template by Bluepearl Design and vBulletin Templates - Ver3.3