Guest User

Untitled

a guest
Oct 23rd, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. Label* Label::create(){
  2. auto ret = new (std::nothrow) Label();
  3. if (ret){
  4. ret->autorelease();
  5. }
  6. return ret;
  7. }
Add Comment
Please, Sign In to add comment