Enable -Wshadow and fix warnings
[platform/core/security/key-manager.git] / src / manager / crypto / generic-backend / encryption-params.h
index 5fa8e9c..b226869 100644 (file)
@@ -28,9 +28,9 @@ namespace Crypto {
 struct EncryptionParams {
        EncryptionParams() {}
 
-       EncryptionParams(RawBuffer iv, RawBuffer tag) :
-               iv(std::move(iv)),
-               tag(std::move(tag))
+       EncryptionParams(RawBuffer _iv, RawBuffer _tag) :
+               iv(std::move(_iv)),
+               tag(std::move(_tag))
        {}
 
        RawBuffer iv;