Commit 05598b44 authored by Davis King's avatar Davis King

Fixed a bug where private inner classes showed up as protected inner classes.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403743
parent e162c18c
......@@ -11,7 +11,7 @@
#include "to_xml.h"
const char* VERSION = "3.1";
const char* VERSION = "3.2";
using namespace std;
using namespace dlib;
......
......@@ -708,16 +708,19 @@ void process_file (
// into the classes output vector.
if (class_stack.size() > 0 && namespaces.back() == class_stack.top().name)
{
// if this class is a inner_class of another then push it into the
// public_inner_classes field of it's containing class
// If this class is a inner_class of another then push it into the
// public_inner_classes or protected_inner_classes field of it's containing class.
if (class_stack.size() > 1)
{
tok_class_record temp = class_stack.top();
class_stack.pop();
if (scope_access.size() > 0 && scope_access.top() == public_scope)
class_stack.top().public_inner_classes.push_back(temp);
else
class_stack.top().protected_inner_classes.push_back(temp);
if (scope_access.size() > 0)
{
if (scope_access.top() == public_scope)
class_stack.top().public_inner_classes.push_back(temp);
else if (scope_access.top() == protected_scope)
class_stack.top().protected_inner_classes.push_back(temp);
}
}
else if (class_stack.size() > 0)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment