Skip to content
Snippets Groups Projects
Commit 3a5175e4 authored by Boman Romain's avatar Boman Romain
Browse files

fix AppleClang 13.0.0.13000029 compatibility

parent 054ba00c
No related branches found
No related tags found
1 merge request!3macOS compatibility + cleaning
Pipeline #5587 passed
......@@ -41,7 +41,7 @@ public:
Lazy(int _np) : value(), np(_np) {}
~Lazy()
{
delete value;
delete static_cast<T *>(value);
//std::cout << "lazy pointer deleted\n";
}
T &get()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment