Skip to content

Commit

Permalink
Run with deprecated enum
Browse files Browse the repository at this point in the history
  • Loading branch information
FAlbertDev committed Aug 14, 2024
1 parent 3526fde commit 77fbb0d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ permissions:

on:
push:
branches: [ ci/amalgamation-example ]
branches: [ ci/amalg-regression-ci-run ]
pull_request:
branches: [ master ]

Expand Down
8 changes: 4 additions & 4 deletions src/lib/math/bigint/bigint.h
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ class BOTAN_PUBLIC_API(2, 0) BigInt final {
/**
* Base enumerator for encoding and decoding
*/
enum Base {
Decimal BOTAN_DEPRECATED("All functions using this enum are deprecated") = 10,
Hexadecimal BOTAN_DEPRECATED("All functions using this enum are deprecated") = 16,
Binary BOTAN_DEPRECATED("All functions using this enum are deprecated") = 256
enum BOTAN_DEPRECATED("All functions using this enum are deprecated") Base {
Decimal = 10,
Hexadecimal = 16,
Binary = 256
};

/**
Expand Down

0 comments on commit 77fbb0d

Please sign in to comment.