diff options
author | Jack Lloyd <[email protected]> | 2018-02-13 09:33:20 -0500 |
---|---|---|
committer | Jack Lloyd <[email protected]> | 2018-02-13 09:33:20 -0500 |
commit | 989ca96ca489a6367b659305d4932575800916f5 (patch) | |
tree | 0a5f0574c3fe455c7594b1786bb2b41b955d51f8 | |
parent | 68a3f15c94f158c7eec258709973cc338f873edc (diff) |
Of course they are public member variables, not functions ...
-rw-r--r-- | src/build-data/buildh.in | 6 | ||||
-rw-r--r-- | src/lib/asn1/alg_id.h | 2 | ||||
-rw-r--r-- | src/lib/asn1/asn1_attribute.h | 2 | ||||
-rw-r--r-- | src/lib/asn1/asn1_obj.h | 2 | ||||
-rw-r--r-- | src/lib/utils/calendar.h | 2 |
5 files changed, 7 insertions, 7 deletions
diff --git a/src/build-data/buildh.in b/src/build-data/buildh.in index 2a0858d8c..24eae539a 100644 --- a/src/build-data/buildh.in +++ b/src/build-data/buildh.in @@ -95,12 +95,12 @@ * Things you can edit (but probably shouldn't) */ -#if !defined(BOTAN_DEPRECATED_PUBLIC_MEMBER_FUNCTIONS) +#if !defined(BOTAN_DEPRECATED_PUBLIC_MEMBER_VARIABLES) #if defined(BOTAN_NO_DEPRECATED) - #define BOTAN_DEPRECATED_PUBLIC_MEMBER_FUNCTIONS private + #define BOTAN_DEPRECATED_PUBLIC_MEMBER_VARIABLES private #else - #define BOTAN_DEPRECATED_PUBLIC_MEMBER_FUNCTIONS public + #define BOTAN_DEPRECATED_PUBLIC_MEMBER_VARIABLES public #endif #endif diff --git a/src/lib/asn1/alg_id.h b/src/lib/asn1/alg_id.h index 20541ead5..22978b847 100644 --- a/src/lib/asn1/alg_id.h +++ b/src/lib/asn1/alg_id.h @@ -37,7 +37,7 @@ class BOTAN_PUBLIC_API(2,0) AlgorithmIdentifier final : public ASN1_Object const OID& get_oid() const { return oid; } const std::vector<uint8_t>& get_parameters() const { return parameters; } - BOTAN_DEPRECATED_PUBLIC_MEMBER_FUNCTIONS: + BOTAN_DEPRECATED_PUBLIC_MEMBER_VARIABLES: /* * These values are public for historical reasons, but in a future release * they will be made private. Do not access them. diff --git a/src/lib/asn1/asn1_attribute.h b/src/lib/asn1/asn1_attribute.h index b1d688562..c9f69eb77 100644 --- a/src/lib/asn1/asn1_attribute.h +++ b/src/lib/asn1/asn1_attribute.h @@ -31,7 +31,7 @@ class BOTAN_PUBLIC_API(2,0) Attribute final : public ASN1_Object const std::vector<uint8_t>& get_parameters() const { return parameters; } - BOTAN_DEPRECATED_PUBLIC_MEMBER_FUNCTIONS: + BOTAN_DEPRECATED_PUBLIC_MEMBER_VARIABLES: /* * These values are public for historical reasons, but in a future release * they will be made private. Do not access them. diff --git a/src/lib/asn1/asn1_obj.h b/src/lib/asn1/asn1_obj.h index 5e3d15624..2c2a3097a 100644 --- a/src/lib/asn1/asn1_obj.h +++ b/src/lib/asn1/asn1_obj.h @@ -108,7 +108,7 @@ class BOTAN_PUBLIC_API(2,0) BER_Object final bool is_a(int type_tag, ASN1_Tag class_tag) const; - BOTAN_DEPRECATED_PUBLIC_MEMBER_FUNCTIONS: + BOTAN_DEPRECATED_PUBLIC_MEMBER_VARIABLES: /* * The following member variables are public for historical reasons, but * will be made private in a future major release. Use the accessor diff --git a/src/lib/utils/calendar.h b/src/lib/utils/calendar.h index 7c8c45d5a..83759070b 100644 --- a/src/lib/utils/calendar.h +++ b/src/lib/utils/calendar.h @@ -65,7 +65,7 @@ class BOTAN_PUBLIC_API(2,0) calendar_point */ std::string to_string() const; - BOTAN_DEPRECATED_PUBLIC_MEMBER_FUNCTIONS: + BOTAN_DEPRECATED_PUBLIC_MEMBER_VARIABLES: /* The member variables are public for historical reasons. Use the get_xxx() functions defined above. These members will be made private in a future major release. |