Skip to content

Commit 176b6f4

Browse files
authored
Update Hash.h
Include headers to avoid build errors on linux.
1 parent 69d57ee commit 176b6f4

File tree

1 file changed

+6
-1
lines changed
  • VCMP-LUA/vcmpWrap/Modules/Crypto

1 file changed

+6
-1
lines changed
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
11
#pragma once
22
#include "pch.h"
33

4+
// Fix build errors
5+
#include <cstdint>
6+
#include <array>
7+
#include <string>
8+
49
#include "modules/crypto/include/digestpp.hpp"
510

611
class Hash
712
{
813
public:
914
static void Init(sol::state*);
1015
private:
11-
};
16+
};

0 commit comments

Comments
 (0)