 Issue 29409580:
  Issue 5013 - Make parameter const ref when applicable.  (Closed) 
  Base URL: https://hg.adblockplus.org/libadblockplus/
    
  
    Issue 29409580:
  Issue 5013 - Make parameter const ref when applicable.  (Closed) 
  Base URL: https://hg.adblockplus.org/libadblockplus/| Index: src/Thread.cpp | 
| =================================================================== | 
| --- a/src/Thread.cpp | 
| +++ b/src/Thread.cpp | 
| @@ -18,17 +18,17 @@ | 
| #ifndef WIN32 | 
| #include <unistd.h> | 
| #endif | 
| #include "Thread.h" | 
| using namespace AdblockPlus; | 
| -void AdblockPlus::Sleep(const int millis) | 
| +void AdblockPlus::Sleep(int millis) | 
| { | 
| #ifdef WIN32 | 
| ::Sleep(millis); | 
| #else | 
| usleep(millis * 1000); | 
| #endif | 
| } |