Skip to content

Commit

Permalink
Remove DLCT_* enum values
Browse files Browse the repository at this point in the history
  • Loading branch information
osubboo committed Nov 29, 2024
1 parent 3a2674d commit 0d730de
Showing 1 changed file with 1 addition and 21 deletions.
22 changes: 1 addition & 21 deletions groups/bdl/bdld/bdld_datum.h
Original file line number Diff line number Diff line change
Expand Up @@ -732,36 +732,16 @@ class Datum {
, e_BINARY = 14 // pointer to the binary data
, e_DECIMAL64 = 15 // Decimal64
, e_INT_MAP = 16 // integer map reference

#ifndef BDE_OMIT_INTERNAL_DEPRECATED
, e_REAL = e_DOUBLE // old spelling
, e_ERROR_VALUE = e_ERROR
, DLCT_NIL = e_NIL
, DLCT_INTEGER = e_INTEGER
, DLCT_REAL = e_DOUBLE
, DLCT_STRING = e_STRING
, DLCT_BOOLEAN = e_BOOLEAN
, DLCT_ERROR_VALUE = e_ERROR_VALUE
, DLCT_DATE = e_DATE
, DLCT_TIME = e_TIME
, DLCT_DATETIME = e_DATETIME
, DLCT_DATETIME_INTERVAL = e_DATETIME_INTERVAL
, DLCT_INTEGER64 = e_INTEGER64
, DLCT_USERDEFINED = e_USERDEFINED
, DLCT_ARRAY = e_ARRAY
, DLCT_MAP = e_MAP
, DLCT_BINARY = e_BINARY
, DLCT_DECIMAL64 = e_DECIMAL64
#endif // end - do not omit internal deprecated
#endif // BDE_OMIT_INTERNAL_DEPRECATED
};

// Define `k_NUM_TYPES` to be the number of consecutively valued
// enumerators in the range `[ e_NIL .. e_DECIMAL64 ]`.
enum {
k_NUM_TYPES = 17 // number of distinct enumerated types
#ifndef BDE_OMIT_INTERNAL_DEPRECATED
, DLCT_NUM_TYPES = k_NUM_TYPES
#endif // end - do not omit internal deprecated
};

#ifdef BSLS_PLATFORM_CPU_32_BIT
Expand Down

0 comments on commit 0d730de

Please sign in to comment.