summaryrefslogtreecommitdiffstats
path: root/src/classdef.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r--src/classdef.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp
index 3eb9fae..f2c733b 100644
--- a/src/classdef.cpp
+++ b/src/classdef.cpp
@@ -183,7 +183,8 @@ void ClassDef::insertMember(MemberDef *md)
/********************************************/
/* insert member in the declaration section */
/********************************************/
- if (md->isRelated() && (Config_getBool("EXTRACT_PRIVATE") || md->protection()!=Private))
+ if (md->isRelated() &&
+ (Config_getBool("EXTRACT_PRIVATE") || md->protection()!=Private))
{
related.append(md);
md->setSectionList(&related);