From 0558ba423cb9cdd5f9cd29a1c47a0530399b2399 Mon Sep 17 00:00:00 2001 From: Eugene Sandulenko Date: Fri, 29 Jul 2016 05:34:35 +0300 Subject: CLOUD: Fix warnings --- backends/cloud/storagefile.h | 2 +- backends/cloud/storageinfo.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'backends/cloud') diff --git a/backends/cloud/storagefile.h b/backends/cloud/storagefile.h index 1324cafc93..1183524f48 100644 --- a/backends/cloud/storagefile.h +++ b/backends/cloud/storagefile.h @@ -57,7 +57,7 @@ public: uint32 timestamp() const { return _timestamp; } bool isDirectory() const { return _isDirectory; } - void setPath(Common::String path) { _path = path; } + void setPath(Common::String path_) { _path = path_; } }; } // End of namespace Cloud diff --git a/backends/cloud/storageinfo.h b/backends/cloud/storageinfo.h index 469f0402c0..f1fb540974 100644 --- a/backends/cloud/storageinfo.h +++ b/backends/cloud/storageinfo.h @@ -37,8 +37,8 @@ class StorageInfo { uint64 _usedBytes, _allocatedBytes; public: - StorageInfo(Common::String uid, Common::String name, Common::String email, uint64 used, uint64 allocated): - _uid(uid), _name(name), _email(email), _usedBytes(used), _allocatedBytes(allocated) {} + StorageInfo(Common::String uid_, Common::String name_, Common::String email_, uint64 used_, uint64 allocated): + _uid(uid_), _name(name_), _email(email_), _usedBytes(used_), _allocatedBytes(allocated) {} Common::String uid() const { return _uid; } Common::String name() const { return _name; } -- cgit v1.2.3