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:
@ -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.
|
||||
*/
|
||||
|
Reference in New Issue
Block a user