Merge branch 'develop' of https://github.com/bramton/lms into develop

This commit is contained in:
emeric
2020-10-28 17:31:45 +01:00
7 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ RandGenerator& getRandGenerator()
return randGenerator;
}
RandGenerator createSeededGenerator(std::size_t seed)
RandGenerator createSeededGenerator(uint_fast32_t seed)
{
return RandGenerator {seed};
}
+1 -1
View File
@@ -27,7 +27,7 @@ namespace Random {
using RandGenerator = std::mt19937;
RandGenerator& getRandGenerator();
RandGenerator createSeededGenerator(std::size_t seed);
RandGenerator createSeededGenerator(uint_fast32_t seed);
template <typename T>
T
+1
View File
@@ -20,6 +20,7 @@
#pragma once
#include <memory>
#include <unordered_map>
#include <vector>
#include <Wt/WComboBox.h>
+1
View File
@@ -20,6 +20,7 @@
#pragma once
#include <optional>
#include <unordered_map>
#include <Wt/WContainerWidget.h>
#include <Wt/WTemplate.h>
+1
View File
@@ -20,6 +20,7 @@
#pragma once
#include <optional>
#include <unordered_map>
#include <Wt/WContainerWidget.h>
#include <Wt/WTemplate.h>
+1
View File
@@ -19,6 +19,7 @@
#include "DownloadResource.hpp"
#include <array>
#include <iostream>
#include <iomanip>
+2
View File
@@ -18,6 +18,8 @@
*/
#include <unistd.h>
#include <array>
#include <fstream>
#include <iostream>