summaryrefslogtreecommitdiff
path: root/include/codemaker
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2014-05-19 10:02:29 +0200
committerStephan Bergmann <sbergman@redhat.com>2014-05-20 11:17:22 +0200
commit8d54796bf152499ecbe61788be64c9035f725dfa (patch)
tree9516219cf8e60bdd46597e522ca4e9fde9b8f407 /include/codemaker
parente4740dbecfce958c2c707d8cc92e6dbe52f4b71b (diff)
enhance pass-by-ref plugin to detect large arguments
Detect arguments larger than 64 chars passed by value. Change-Id: I9b0ea9ccb99d115984a26eab67c9cf6afd5f6cae Signed-off-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'include/codemaker')
-rw-r--r--include/codemaker/exceptiontree.hxx2
-rw-r--r--include/codemaker/generatedtypeset.hxx2
2 files changed, 2 insertions, 2 deletions
diff --git a/include/codemaker/exceptiontree.hxx b/include/codemaker/exceptiontree.hxx
index f689b882844c..ab395c68be17 100644
--- a/include/codemaker/exceptiontree.hxx
+++ b/include/codemaker/exceptiontree.hxx
@@ -108,7 +108,7 @@ public:
private:
ExceptionTree(ExceptionTree &); // not implemented
- void operator =(ExceptionTree); // not implemented
+ void operator =(const ExceptionTree&); // not implemented
ExceptionTreeNode m_root;
};
diff --git a/include/codemaker/generatedtypeset.hxx b/include/codemaker/generatedtypeset.hxx
index f3c7b9235b8e..ee27e6f71ec4 100644
--- a/include/codemaker/generatedtypeset.hxx
+++ b/include/codemaker/generatedtypeset.hxx
@@ -61,7 +61,7 @@ public:
private:
GeneratedTypeSet(GeneratedTypeSet &); // not implemented
- void operator =(GeneratedTypeSet); // not implemented
+ void operator =(const GeneratedTypeSet&); // not implemented
boost::unordered_set< OString, OStringHash > m_set;
};