Add .clang-format file

Using clang-format version 12.0.0
This commit is contained in:
MerryMage
2021-05-22 14:51:20 +01:00
parent 51b155df92
commit 53493b2024
315 changed files with 3178 additions and 2660 deletions

View File

@@ -8,7 +8,7 @@
#include <random>
#include <type_traits>
template <typename T>
template<typename T>
T RandInt(T min, T max) {
static_assert(std::is_integral_v<T>, "T must be an integral type.");
static_assert(!std::is_same_v<T, signed char> && !std::is_same_v<T, unsigned char>,