Fix gcc-11 etc. compilation errors

このコミットが含まれているのは:
Albert S. 2021-10-25 13:30:46 +02:00
コミット 0aa4bca6cc
3個のファイルの変更3行の追加0行の削除

1
cache/mapcache.h vendored
ファイルの表示

@ -3,6 +3,7 @@
#include <map>
#include <set>
#include <shared_mutex>
#include <optional>
/* Thread-Safe Key-Value store */
template <class T> class MapCache

ファイルの表示

@ -1,5 +1,6 @@
#ifndef PERMISSIONSDAO_H
#define PERMISSIONSDAO_H
#include <optional>
#include "../permissions.h"
#include "../user.h"
class PermissionsDao

ファイルの表示

@ -8,6 +8,7 @@
#include <map>
#include <regex>
#include <ctime>
#include <limits>
namespace utils
{