Remove unnecessary argument names in function typedef 04/43504/5
authorKrzysztof Jackiewicz <k.jackiewicz@samsung.com>
Thu, 9 Jul 2015 13:18:01 +0000 (15:18 +0200)
committerKrzysztof Jackiewicz <k.jackiewicz@samsung.com>
Tue, 28 Jul 2015 12:31:49 +0000 (05:31 -0700)
[Problem] Unnecessary argument names in function typedef
[Solution] Names removed

[Verification] Successfull compilation

Change-Id: I32255580b6b9e9c386493adb94f50e2f77b48661

src/manager/client-capi/ckmc-manager.cpp

index d971943..0fe3b94 100644 (file)
@@ -117,11 +117,11 @@ ckmc_cert_list_s *_toNewCkmCertList(const CKM::CertificateShPtrVector &certVecto
     return start;
 }
 
-typedef int (CKM::Manager::*cryptoFn)(const CKM::CryptoAlgorithm &algo,
-                                      const CKM::Alias &keyAlias,
-                                      const CKM::Password &password,
-                                      const CKM::RawBuffer& plain,
-                                      CKM::RawBuffer& encrypted);
+typedef int (CKM::Manager::*cryptoFn)(const CKM::CryptoAlgorithm&,
+                                      const CKM::Alias&,
+                                      const CKM::Password&,
+                                      const CKM::RawBuffer&,
+                                      CKM::RawBuffer&);
 
 int _cryptoOperation(cryptoFn operation,
                      const ckmc_param_list_s *params,