Skip to content

Commit 9b659fa

Browse files
committed
[libc++] Remove outdated FIXME comment in ctype<char>
The FIXME comment about not hardcoding table_size is unclear about its original intent.
1 parent c12f08f commit 9b659fa

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

libcxx/include/__cxx03/__locale

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ public:
578578
#ifdef _CACHED_RUNES
579579
static const size_t table_size = _CACHED_RUNES;
580580
#else
581-
static const size_t table_size = 256; // FIXME: Don't hardcode this.
581+
static const size_t table_size = 256;
582582
#endif
583583
_LIBCPP_HIDE_FROM_ABI const mask* table() const _NOEXCEPT { return __tab_; }
584584
static const mask* classic_table() _NOEXCEPT;

libcxx/include/__locale

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ public:
585585
# ifdef _CACHED_RUNES
586586
static const size_t table_size = _CACHED_RUNES;
587587
# else
588-
static const size_t table_size = 256; // FIXME: Don't hardcode this.
588+
static const size_t table_size = 256;
589589
# endif
590590
_LIBCPP_HIDE_FROM_ABI const mask* table() const _NOEXCEPT { return __tab_; }
591591
static const mask* classic_table() _NOEXCEPT;

0 commit comments

Comments
 (0)