From 1c398ffc71845163ca50b712f1edd9e1b2a87772 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Fri, 17 Jan 2025 17:11:02 +0000 Subject: [PATCH] [type.info] Remove comments explaining deleted members The standard is not a tutorial. --- source/support.tex | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/support.tex b/source/support.tex index 3fa02068e3..8a55b3eb22 100644 --- a/source/support.tex +++ b/source/support.tex @@ -3250,8 +3250,8 @@ size_t hash_code() const noexcept; const char* name() const noexcept; - type_info(const type_info&) = delete; // cannot be copied - type_info& operator=(const type_info&) = delete; // cannot be copied + type_info(const type_info&) = delete; + type_info& operator=(const type_info&) = delete; }; } \end{codeblock}