Guest User

Untitled

a guest
Jun 24th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.19 KB | None | 0 0
  1. // Prefer this
  2. const int AllowDownloadAttempts = 2;
  3. if (AttemptDownload() > AllowDownloadAttempts) RegisterAndAllowDownload();
  4.  
  5. // Over this
  6. if (AttemptDownload() > 2) RegisterAndAllowDownload();
Add Comment
Please, Sign In to add comment