diff options
author | JhinX Lee <jhinx.lee@intel.com> | 2012-07-12 17:50:07 +0200 |
---|---|---|
committer | David Wagner <david.wagner@intel.com> | 2014-02-12 17:03:11 +0100 |
commit | 4ebc0984c7afe9a6f0168169d5141421b4adcc67 (patch) | |
tree | 67036e21e0abed871359af88e08881ec3d25a548 /remote-processor | |
parent | 93250d172612c405135d56ffd306deae5ebc6df1 (diff) | |
download | external_parameter-framework-4ebc0984c7afe9a6f0168169d5141421b4adcc67.zip external_parameter-framework-4ebc0984c7afe9a6f0168169d5141421b4adcc67.tar.gz external_parameter-framework-4ebc0984c7afe9a6f0168169d5141421b4adcc67.tar.bz2 |
PFW: KlocWork Severe issues fix on Parameter Framework
BZ: 46220
Added dummy copy constructors
Change-Id: I2b79900a5d0d9173084aa89d77cc90fef1f94f14
Orig-Change-Id: I040e4d2fd8d77ac04bf2fb78a190a39aadd0b0f3
Signed-off-by: JhinX Lee <jhinx.lee@intel.com>
Reviewed-on: http://android.intel.com:8080/60268
Reviewed-by: Mendi, EduardoX <eduardox.mendi@intel.com>
Tested-by: Mendi, EduardoX <eduardox.mendi@intel.com>
Reviewed-by: buildbot <buildbot@intel.com>
Tested-by: buildbot <buildbot@intel.com>
Diffstat (limited to 'remote-processor')
-rw-r--r-- | remote-processor/Message.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/remote-processor/Message.h b/remote-processor/Message.h index 9bf702d..d3aaca8 100644 --- a/remote-processor/Message.h +++ b/remote-processor/Message.h @@ -53,6 +53,8 @@ protected: // Remaining data size uint32_t getRemainingDataSize() const; private: + CMessage(const CMessage&); + CMessage& operator=(const CMessage&); // Data allocation void allocateData(uint32_t uiDataSize); // Fill data to send |