From 20f965815eb1ce956005d422977d670928b56d06 Mon Sep 17 00:00:00 2001 From: Casey Carter Date: Wed, 10 May 2017 13:24:59 -0700 Subject: [PATCH] Change the return type of monotonic_buffer_resource's deleted assignment ... to monotonic_buffer_resource& for consistency with the default definition of the builtin assignment operator. This change has no normative effect, it only eliminates the inconsistency as a potential source of confusion. Since the return type of deleted functions is not observable, this change is editorial. --- source/utilities.tex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/utilities.tex b/source/utilities.tex index da1f90c259..9752134df6 100644 --- a/source/utilities.tex +++ b/source/utilities.tex @@ -12116,7 +12116,7 @@ virtual ~monotonic_buffer_resource(); - monotonic_buffer_resource + monotonic_buffer_resource& operator=(const monotonic_buffer_resource&) = delete; void release();