v0.4.13-alpha-rc5

This commit is contained in:
Pax1601
2023-12-08 15:38:56 +01:00
parent 43d28ebe19
commit 0459d5c625
13 changed files with 15 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
#pragma once
#define VERSION "v0.4.12-alpha-rc4"
#define VERSION "v0.4.13-alpha-rc5"
#define LOG_NAME "Olympus_log.txt"
#define REST_ADDRESS "http://localhost:30000"
#define REST_URI "olympus"

View File

@@ -44,7 +44,7 @@ std::string to_string(const std::wstring& wstr)
std::string random_string(size_t length)
{
srand(time(NULL));
srand(static_cast<unsigned int>(time(NULL)));
auto randchar = []() -> char
{
const char charset[] =