File tree Expand file tree Collapse file tree 2 files changed +10
-2
lines changed
Expand file tree Collapse file tree 2 files changed +10
-2
lines changed Original file line number Diff line number Diff line change 1+ ---
2+ category : minorAnalysis
3+ ---
4+ * The ` StdNamespace ` class now also includes all inline namespaces that are children of ` std ` namespace.
Original file line number Diff line number Diff line change @@ -230,8 +230,12 @@ class GlobalNamespace extends Namespace {
230230}
231231
232232/**
233- * The C++ `std::` namespace.
233+ * The C++ `std::` namespace and its inline namespaces .
234234 */
235235class StdNamespace extends Namespace {
236- StdNamespace ( ) { this .hasName ( "std" ) and this .getParentNamespace ( ) instanceof GlobalNamespace }
236+ StdNamespace ( ) {
237+ this .hasName ( "std" ) and this .getParentNamespace ( ) instanceof GlobalNamespace
238+ or
239+ this .isInline ( ) and this .getParentNamespace ( ) instanceof StdNamespace
240+ }
237241}
You can’t perform that action at this time.
0 commit comments