mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2024-11-08 00:37:15 +01:00
This commit is contained in:
parent
ec7f1183d8
commit
52cfa235be
@ -54,12 +54,12 @@ struct CtxJSON
|
|||||||
/* --------------------------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------------------------
|
||||||
* Default constructor.
|
* Default constructor.
|
||||||
*/
|
*/
|
||||||
CtxJSON() noexcept = default;
|
CtxJSON() = default;
|
||||||
|
|
||||||
/* --------------------------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------------------------
|
||||||
* Explicit constructor.
|
* Explicit constructor.
|
||||||
*/
|
*/
|
||||||
explicit CtxJSON(bool ooa) noexcept
|
explicit CtxJSON(bool ooa)
|
||||||
: CtxJSON()
|
: CtxJSON()
|
||||||
{
|
{
|
||||||
mObjectOverArray = ooa;
|
mObjectOverArray = ooa;
|
||||||
@ -68,7 +68,7 @@ struct CtxJSON
|
|||||||
/* --------------------------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------------------------
|
||||||
* Explicit constructor.
|
* Explicit constructor.
|
||||||
*/
|
*/
|
||||||
CtxJSON(bool ooa, StackStrF & mmname) noexcept
|
CtxJSON(bool ooa, StackStrF & mmname)
|
||||||
: CtxJSON()
|
: CtxJSON()
|
||||||
{
|
{
|
||||||
mObjectOverArray = ooa;
|
mObjectOverArray = ooa;
|
||||||
@ -79,7 +79,7 @@ struct CtxJSON
|
|||||||
/* --------------------------------------------------------------------------------------------
|
/* --------------------------------------------------------------------------------------------
|
||||||
* Internal constructor.
|
* Internal constructor.
|
||||||
*/
|
*/
|
||||||
explicit CtxJSON(std::function< void(CtxJSON&) > && kh) noexcept
|
explicit CtxJSON(std::function< void(CtxJSON&) > && kh)
|
||||||
: CtxJSON()
|
: CtxJSON()
|
||||||
{
|
{
|
||||||
mKeyHook = std::move(kh);
|
mKeyHook = std::move(kh);
|
||||||
|
Loading…
Reference in New Issue
Block a user