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; };