Browse Source

Fix missing include

Patrick-Christopher Mattulat 2 months ago
parent
commit
11d86e2d02
1 changed files with 2 additions and 1 deletions
  1. 2 1
      include/ls-std/encoding/Base64.hpp

+ 2 - 1
include/ls-std/encoding/Base64.hpp

@@ -3,7 +3,7 @@
  * Company:         Lynar Studios
  * E-Mail:          webmaster@lynarstudios.com
  * Created:         2022-01-03
- * Changed:         2023-05-15
+ * Changed:         2024-09-05
  *
  * */
 
@@ -11,6 +11,7 @@
 #define LS_STD_BASE64_HPP
 
 #include <bitset>
+#include <cstdint>
 #include <ls-std/core/interface/IEncoding.hpp>
 #include <ls-std/os/dynamic-goal.hpp>
 #include <string_view>