aboutsummaryrefslogtreecommitdiffstats
path: root/abstractmetalang.h
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-02-08 09:36:00 -0200
committerHugo Lima <hugo.lima@openbossa.org>2010-02-08 16:07:06 -0200
commit8d037108eb0216e178855bb2ba22a09154454ea9 (patch)
treedf204c80ee818acce691357cbef7ea448bd5072d /abstractmetalang.h
parent20998c0dc9532630ba549af9a8321cd736c79368 (diff)
Fix AbstractMetaFunction::implicitConversions.
- Public ctors added by the user with 1 value-type parameter are always added to the implicity conversion list. - If the ctor visibility of an function was modified from public to private, the function isn't added to the result. Reviewed by Renato Araújo <renato.filho@openbossa.org>
Diffstat (limited to 'abstractmetalang.h')
-rw-r--r--abstractmetalang.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/abstractmetalang.h b/abstractmetalang.h
index 590ccd716..e3d6ad746 100644
--- a/abstractmetalang.h
+++ b/abstractmetalang.h
@@ -93,7 +93,7 @@ public:
class APIEXTRACTOR_API AbstractMetaAttributes
{
public:
- AbstractMetaAttributes() : m_attributes(0) {};
+ AbstractMetaAttributes() : m_attributes(0), m_originalAttributes(0) {};
enum Attribute {
None = 0x00000000,