Jan_31_2024-Dev

This commit is contained in:
Ned Wright
2024-01-31 17:34:53 +00:00
parent 752a5785f0
commit 6d67818a94
376 changed files with 8101 additions and 7064 deletions

0
core/include/general/buffer.h Executable file → Normal file
View File

0
core/include/general/buffer/char_iterator.h Executable file → Normal file
View File

0
core/include/general/buffer/data_container.h Executable file → Normal file
View File

0
core/include/general/buffer/helper_functions.h Executable file → Normal file
View File

0
core/include/general/buffer/internal_ptr.h Executable file → Normal file
View File

0
core/include/general/buffer/segment.h Executable file → Normal file
View File

0
core/include/general/c_common/network_defs.h Executable file → Normal file
View File

0
core/include/general/c_common/networking_headers.h Executable file → Normal file
View File

0
core/include/general/cptest.h Executable file → Normal file
View File

0
core/include/general/cptest/cptest_tcppacket.h Executable file → Normal file
View File

0
core/include/general/debug.h Executable file → Normal file
View File

0
core/include/general/intelligence_comp_v2.h Executable file → Normal file
View File

View File

@@ -29,7 +29,7 @@
// Code taken from N4189 pending standard - www.open-std.org/jtc1/sc22/wg21/docs/papers/2014/n4189.pdf
// (with some minor adaptations for C++11)
#include <type_traits> // For ::std::remove_reference
#include <utility>
namespace std
{
@@ -56,7 +56,6 @@ public:
if (execute_on_destruction) this->exit_function();
}
// LCOV_EXCL_START Reason: coverage upgrade
// move
scope_exit(scope_exit &&rhs) noexcept
:
@@ -65,7 +64,6 @@ public:
{
rhs.release();
}
// LCOV_EXCL_STOP
void
release() noexcept

0
core/include/general/time_proxy.h Executable file → Normal file
View File