Skip to content

Commit

Permalink
Fix build error with gcc 14
Browse files Browse the repository at this point in the history
src/decrypters/Helpers.h:55:13: error: 'uint8_t' was not declared in this scope
   55 | std::vector<uint8_t> ConvertKidStrToBytes(std::string_view kidStr);
  • Loading branch information
bkuhls committed Aug 3, 2024
1 parent 11506a7 commit bd31b00
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/decrypters/Helpers.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@

#pragma once

#include <cstdint>
#include <string>
#include <string_view>
#include <vector>
Expand Down

0 comments on commit bd31b00

Please sign in to comment.