1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-01-19 03:57:14 +01:00

Don't return for void methods.

This commit is contained in:
Sandu Liviu Catalin 2021-01-31 14:13:11 +02:00
parent 0670a8dadf
commit 4838850051

View File

@ -291,23 +291,25 @@ template < class T > struct SqVector
*/ */
void Resize(SQInteger n) void Resize(SQInteger n)
{ {
return Valid().resize(ClampL< SQInteger, size_t >(n), T()); Valid().resize(ClampL< SQInteger, size_t >(n), T());
} }
/* -------------------------------------------------------------------------------------------- /* --------------------------------------------------------------------------------------------
* Resize the container to contain a specific amount of elements. * Resize the container to contain a specific amount of elements.
*/ */
void ResizeEx(SQInteger n, OptimalArg v) SqVector & ResizeEx(SQInteger n, OptimalArg v)
{ {
return Valid().resize(ClampL< SQInteger, size_t >(n), Opt::Get(v)); Valid().resize(ClampL< SQInteger, size_t >(n), Opt::Get(v));
return *this;
} }
/* -------------------------------------------------------------------------------------------- /* --------------------------------------------------------------------------------------------
* Increase the capacity of the container to a value that's greater or equal to the one specified. * Increase the capacity of the container to a value that's greater or equal to the one specified.
*/ */
void Reserve(SQInteger n) SqVector & Reserve(SQInteger n)
{ {
return Valid().reserve(ClampL< SQInteger, size_t >(n)); Valid().reserve(ClampL< SQInteger, size_t >(n));
return *this;
} }
/* -------------------------------------------------------------------------------------------- /* --------------------------------------------------------------------------------------------
@ -315,7 +317,7 @@ template < class T > struct SqVector
*/ */
void Compact() void Compact()
{ {
return Valid().shrink_to_fit(); Valid().shrink_to_fit();
} }
/* -------------------------------------------------------------------------------------------- /* --------------------------------------------------------------------------------------------
@ -323,7 +325,7 @@ template < class T > struct SqVector
*/ */
void Clear() void Clear()
{ {
return Valid().clear(); Valid().clear();
} }
/* -------------------------------------------------------------------------------------------- /* --------------------------------------------------------------------------------------------
@ -331,7 +333,7 @@ template < class T > struct SqVector
*/ */
void Push(OptimalArg v) void Push(OptimalArg v)
{ {
return Valid().push_back(Opt::Get(v)); Valid().push_back(Opt::Get(v));
} }
/* -------------------------------------------------------------------------------------------- /* --------------------------------------------------------------------------------------------