diff options
| author | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-25 12:57:46 +0200 |
|---|---|---|
| committer | Denys Vlasenko <vda.linux@googlemail.com> | 2009-08-25 12:57:46 +0200 |
| commit | 5bf3512df0529960ed4980251825b49a12eff894 (patch) | |
| tree | de20619cee10aa47781f43a1be32e56af73cf99a /lib/CommLayer/DBusClientProxy.h | |
| parent | 47df431ad534b9319d95ef4dc79c2671baf0ee1b (diff) | |
| download | abrt-5bf3512df0529960ed4980251825b49a12eff894.tar.gz abrt-5bf3512df0529960ed4980251825b49a12eff894.tar.xz abrt-5bf3512df0529960ed4980251825b49a12eff894.zip | |
pass map_crash_report_t by const reference, not by value
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'lib/CommLayer/DBusClientProxy.h')
| -rw-r--r-- | lib/CommLayer/DBusClientProxy.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/CommLayer/DBusClientProxy.h b/lib/CommLayer/DBusClientProxy.h index 5b5c1fd..22dfcf1 100644 --- a/lib/CommLayer/DBusClientProxy.h +++ b/lib/CommLayer/DBusClientProxy.h @@ -90,7 +90,7 @@ public: vector_crash_infos_t GetCrashInfos(); bool DeleteDebugDump(const std::string& pUUID); map_crash_report_t CreateReport(const std::string& pUUID); - void Report(map_crash_report_t pReport); + void Report(const map_crash_report_t& pReport); map_crash_report_t GetJobResult(uint64_t pJobID); public: |
