Преглед на файлове

LibCrypto: Make PEM.h able to stand alone

These headers should probably all be converted into proper functions of
LibCrypto, especially since we have shared objects.
Ben Wiederhake преди 4 години
родител
ревизия
1ec225f5ba
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  1. 1 1
      Userland/Libraries/LibCrypto/ASN1/PEM.h

+ 1 - 1
Userland/Libraries/LibCrypto/ASN1/PEM.h

@@ -32,7 +32,7 @@
 
 namespace Crypto {
 
-static ByteBuffer decode_pem(ReadonlyBytes data_in, size_t cert_index = 0)
+static inline ByteBuffer decode_pem(ReadonlyBytes data_in, size_t cert_index = 0)
 {
     size_t i { 0 };
     size_t start_at { 0 };