Skip to content

Commit

Permalink
Merge pull request games-on-whales#26 from cupown/fix/gcc13
Browse files Browse the repository at this point in the history
Fix compilation on GCC 13
  • Loading branch information
ABeltramo authored Jun 17, 2023
2 parents 829c772 + 6d2e6e9 commit 09662b6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/crypto/src/aes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <openssl/aes.h>
#include <openssl/evp.h>
#include <openssl/rand.h>
#include <cstdint>

namespace aes {
using CIPHER_CTX_ptr = std::unique_ptr<EVP_CIPHER_CTX, decltype(&::EVP_CIPHER_CTX_free)>;
Expand Down
1 change: 1 addition & 0 deletions src/moonlight/moonlight/data-structures.hpp
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#pragma once
#include <string>
#include <cstdint>

namespace moonlight {

Expand Down
2 changes: 1 addition & 1 deletion tests/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
FetchContent_Declare(
Catch2
GIT_REPOSITORY https://github.com/catchorg/Catch2.git
GIT_TAG v3.1.1
GIT_TAG v3.3.2
)

FetchContent_MakeAvailable(Catch2)
Expand Down

0 comments on commit 09662b6

Please sign in to comment.