1
0
mirror of https://github.com/VCMP-SqMod/SqMod.git synced 2025-06-15 22:57:12 +02:00

BLOB and CLOB support.

This commit is contained in:
Sandu Liviu Catalin
2021-04-03 16:30:08 +03:00
parent 950d684f9a
commit d9a35ec5d8
2 changed files with 20 additions and 4 deletions

View File

@ -53,6 +53,14 @@ struct SqString
mS.resize(ClampL< SQInteger, size_t >(n), v);
}
/* --------------------------------------------------------------------------------------------
* Construct with forwarded native arguments.
*/
template < class... Args > SqString(SqInPlace SQ_UNUSED_ARG(x), Args&&... args)
: mS(std::forward< Args >(args)...)
{
}
/* --------------------------------------------------------------------------------------------
* Copy constructor from reference.
*/