This commit is contained in:
Jeff Becker 2019-05-10 07:52:50 -04:00
parent 11b9aea4a7
commit faacc86eb5
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ namespace llarp
NewPtr()
{
void *ptr = mem->allocate();
new(ptr) Value_t;
::new(ptr) Value_t;
return static_cast<Ptr_t>(ptr);
}