mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-06-17 07:37:13 +02:00
More code cleanup.
This commit is contained in:
@ -11,8 +11,8 @@ namespace SqMod {
|
||||
*/
|
||||
enum CheckpointCircularLocks
|
||||
{
|
||||
CHECKPOINTCL_EMIT_CHECKPOINT_WORLD = (1 << 0),
|
||||
CHECKPOINTCL_EMIT_CHECKPOINT_RADIUS = (1 << 1)
|
||||
CHECKPOINTCL_EMIT_CHECKPOINT_WORLD = (1u << 0u),
|
||||
CHECKPOINTCL_EMIT_CHECKPOINT_RADIUS = (1u << 1u)
|
||||
};
|
||||
|
||||
/* ------------------------------------------------------------------------------------------------
|
||||
@ -48,7 +48,7 @@ private:
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
* Base constructor.
|
||||
*/
|
||||
CCheckpoint(Int32 id);
|
||||
explicit CCheckpoint(Int32 id);
|
||||
|
||||
public:
|
||||
|
||||
@ -67,11 +67,6 @@ public:
|
||||
*/
|
||||
CCheckpoint(CCheckpoint &&) = delete;
|
||||
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
* Destructor.
|
||||
*/
|
||||
~CCheckpoint();
|
||||
|
||||
/* --------------------------------------------------------------------------------------------
|
||||
* Copy assignment operator. (disabled)
|
||||
*/
|
||||
|
Reference in New Issue
Block a user