 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/ConsoleJsObject.h | 
| =================================================================== | 
| --- a/src/ConsoleJsObject.h | 
| +++ b/src/ConsoleJsObject.h | 
| @@ -22,13 +22,13 @@ | 
| #include <AdblockPlus/JsEngine.h> | 
| namespace AdblockPlus | 
| { | 
| class JsEngine; | 
| namespace ConsoleJsObject | 
| { | 
| - JsValuePtr Setup(JsEnginePtr jsEngine, JsValuePtr obj); | 
| + JsValuePtr Setup(const JsEnginePtr& jsEngine, const JsValuePtr& obj); | 
| } | 
| } | 
| #endif |