JLospinoso / ccc

Companion Code for C++ Crash Course

Home Page:https://ccc.codes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Page 193, Placement Operators

xiaogozaijiao opened this issue · comments

Where read:

void operator delete(size_t, void*)
void* operator new[](void*, void*)

Should read:

void operator delete(void*, void*)
void* operator new[](size_t, void*)

Thanks for the note -- I've got the correct signatures for "non-allocating placement deallocation functions."