Fix missing includes

This commit is contained in:
Jonathan G Rennison
2024-02-21 01:08:06 +00:00
parent 1f08ea54e5
commit 158fbe19f8
3 changed files with 5 additions and 0 deletions

View File

@@ -20,6 +20,8 @@
#include "3rdparty/monocypher/monocypher-ed25519.h"
#include "3rdparty/nlohmann/json.hpp"
#include <filesystem>
#include "safeguards.h"
/** The public keys used for signature validation. */

View File

@@ -10,6 +10,8 @@
#ifndef SOCIAL_INTEGRATION_H
#define SOCIAL_INTEGRATION_H
#include <vector>
class SocialIntegrationPlugin {
public:
enum State {

View File

@@ -126,6 +126,7 @@
#include <algorithm>
#include <tuple>
#include <atomic>
#include <cmath>
#include <mutex>
#include <condition_variable>