diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9143c920cf6..40a01639ef7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ permissions: on: push: - branches: [ ci/amalgamation-example ] + branches: [ ci/amalg-regression-ci-run ] pull_request: branches: [ master ] diff --git a/src/lib/math/bigint/bigint.h b/src/lib/math/bigint/bigint.h index d5577e7c73d..2f463f2bca8 100644 --- a/src/lib/math/bigint/bigint.h +++ b/src/lib/math/bigint/bigint.h @@ -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 }; /**