Fix gcc-11 etc. compilation errors

Este commit está contenido en:
Albert S. 2021-10-25 13:30:46 +02:00
padre b41a5f4e5b
commit 0aa4bca6cc
Se han modificado 3 ficheros con 3 adiciones y 0 borrados

1
cache/mapcache.h vendido
Ver fichero

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

Ver fichero

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

Ver fichero

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