LibCrypto: Make PEMType an enum class

This is required for the following commits to avoid a conflict
with the `Certificate` namespace.
This commit is contained in:
devgianlu 2024-11-24 19:07:10 +01:00 committed by Andreas Kling
commit 07ced0cb34
Notes: github-actions[bot] 2024-11-25 13:12:35 +00:00
2 changed files with 3 additions and 3 deletions

View file

@ -11,7 +11,7 @@
namespace Crypto {
enum PEMType {
enum class PEMType {
Certificate,
PrivateKey,
};