diff --git a/ctl/shared_ptr.h b/ctl/shared_ptr.h index b562a5a49..983e33816 100644 --- a/ctl/shared_ptr.h +++ b/ctl/shared_ptr.h @@ -48,7 +48,7 @@ struct shared_pointer : shared_control static shared_pointer* make(T* p) { - auto p2 = unique_ptr(p); + auto p2 = unique_ptr(p); auto r = new shared_pointer(p2.release()); return r; }