diff options
| author | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-16 18:24:16 +0200 | 
|---|---|---|
| committer | Loek Le Blansch <loek@pipeframe.xyz> | 2024-10-16 18:24:16 +0200 | 
| commit | 9fd3bdca9de2d37b63e1646b22d32b0b182f01ee (patch) | |
| tree | 363af52a0db9a75f5cd2aebd6108d5b880865ff8 /src/crepe/api/BehaviorScript.cpp | |
| parent | 81a9b43e12a32340262fa0e74005c7e6bd25eba7 (diff) | |
use unique_ptr instead of manual memory management in behaviorscript
Diffstat (limited to 'src/crepe/api/BehaviorScript.cpp')
| -rw-r--r-- | src/crepe/api/BehaviorScript.cpp | 7 | 
1 files changed, 0 insertions, 7 deletions
| diff --git a/src/crepe/api/BehaviorScript.cpp b/src/crepe/api/BehaviorScript.cpp index e8a85dd..7a93f10 100644 --- a/src/crepe/api/BehaviorScript.cpp +++ b/src/crepe/api/BehaviorScript.cpp @@ -9,10 +9,3 @@ BehaviorScript::BehaviorScript() {  	dbg_trace();  } -BehaviorScript::~BehaviorScript() { -	if (this->script != nullptr) { -		delete this->script; -		this->script = nullptr; -	} -} - |