This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
singleinstance = false | |
autoanalyzer = true | |
editor.autoactivate = true | |
editor.fold = false | |
editor.tabwidth = 2 | |
editor.usetabs = true | |
editor.smartindent = false | |
editor.usewrap = false | |
debugger.allowediting = true |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\include\tuple(424): warning C4346: 'std::is_nothrow_move_assignable<_Ty>::value': dependent name is not a type (compiling source file .\lib\SQLiteCpp\src\Transaction.cpp) | |
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\include\tuple(424): note: prefix with 'typename' to indicate a type (compiling source file .\lib\SQLiteCpp\src\Transaction.cpp) | |
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\include\tuple(463): note: see reference to class template instantiation 'std::tuple<_This,_Rest...>' being compiled (compiling source file .\lib\SQLiteCpp\src\Transaction.cpp) | |
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\include\tuple(424): error C2061: syntax error: identifier 'value' (compiling source file .\lib\SQLiteCpp\src\Transaction.cpp) | |
C:\Program Files (x86)\Microsoft Visual Studio 14.0\VC\include\tuple(426): error C2091: function returns function (compiling source file .\lib\SQLiteCpp\src\Transaction.cpp) | |
C:\Program Files (x86)\Mi |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return | |
{ | |
cWorld = | |
{ | |
Desc = [[]], | |
Inherits = | |
{ | |
"cBroadcastInterface", | |
"cForEachChunkProvider", | |
"cWorldInterface", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
return | |
{ | |
cWorld = | |
{ | |
Desc = "", | |
Inherits = | |
{ | |
"cBroadcastInterface", | |
"cForEachChunkProvider", | |
"cWorldInterface", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ 1%] Built target expat | |
[ 7%] Built target libdeflate | |
[ 10%] Built target lualib | |
[ 11%] Built target fmt | |
[ 11%] Built target jsoncpp_lib | |
[ 11%] Built target sqlite3 | |
[ 14%] Built target event_core_static | |
[ 27%] Built target mbedcrypto | |
[ 28%] Building CXX object Tools/NoiseSpeedTest/CMakeFiles/NoiseSpeedTest.dir/__/__/src/Logger.cpp.o | |
[ 28%] Building CXX object Tools/NoiseSpeedTest/CMakeFiles/NoiseSpeedTest.dir/__/__/src/LoggerListeners.cpp.o |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- Main.lua | |
--[[ | |
Starts a TCP server; then launches self again with the server port as param, which creates a client that connects to the server. | |
The server uses socket timeouts to report time, the client doesn't send any response to trigger the timeout. | |
In ZeroBraneStudio on Linux, the :settimeout() call seems to succeed, but the timeout is ignored and pretty much | |
every :receive() call then returns immediately with a "timeout" error. | |
--]] |