From 71419ffd9969f27e51b8f8b0f7892b931d10d317 Mon Sep 17 00:00:00 2001 From: Sandu Liviu Catalin Date: Sun, 29 Jul 2018 19:26:09 +0300 Subject: [PATCH] Fix comments on StackStrF helper. --- include/sqrat/sqratUtil.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/include/sqrat/sqratUtil.h b/include/sqrat/sqratUtil.h index 66be8615..b8735120 100644 --- a/include/sqrat/sqratUtil.h +++ b/include/sqrat/sqratUtil.h @@ -1677,7 +1677,7 @@ struct StackStrF StackStrF(const StackStrF & o) = delete; ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - /// Copy constructor. + /// Move constructor. ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// StackStrF(StackStrF && o) : mPtr(o.mPtr) @@ -1705,12 +1705,12 @@ struct StackStrF } ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - /// Copy constructor. (disabled) + /// Copy assignment operator. (disabled) ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// StackStrF & operator = (const StackStrF & o) = delete; ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// - /// Move constructor. (disabled) + /// Move assignment operator. (disabled) ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// StackStrF & operator = (StackStrF && o) = delete; };