Proper fix for static asserts (#64)

Replace std::uniform_int_distribution with boost::random::uniform_int_distribution
This commit is contained in:
ArtemisX64 2022-08-26 21:28:50 +09:00 committed by GitHub
parent 19a0a3a359
commit 1cb2d4e5ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 20 additions and 13 deletions

View file

@ -1,9 +1,3 @@
//Temporary Workaround for static_assert related errors in libstdc++12
//TODO: Make a proper fix
#ifdef __clang__
#define static_assert(...) static_assert(true, "")
#endif
#pragma once
#include <stdlib.h> // for size_t