We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
CppType.FullName
1 parent 953d9f8 commit 4775ebdCopy full SHA for 4775ebd
src/CppAst/CppElement.cs
@@ -1,4 +1,4 @@
1
-// Copyright (c) Alexandre Mutel. All rights reserved.
+// Copyright (c) Alexandre Mutel. All rights reserved.
2
// Licensed under the BSD-Clause 2 license.
3
// See license.txt file in the project root for full license information.
4
@@ -51,14 +51,10 @@ public string FullParentName
51
}
52
p = ns.Parent;
53
54
- else if (p is CppCompilation)
55
- {
56
- // root namespace here, just ignore~
57
- p = null;
58
- }
59
else
60
{
61
- throw new NotImplementedException("Can not be here, not support type here!");
+ // root namespace here, or no known parent, just ignore~
+ p = null;
62
63
64
0 commit comments