Addressed comments for nsnam/ns-3-dev MR 91

- Removed unnecessary files src/core/model/{attribute-container,pair}.cc
- Removed 'explicit' modifier to PairChecker
- Modified output stream operator for PairValue; update PairValueTestCase
- Updated src/core/wscript to latest master
- Added Pair and AttributeContainer to utils/print-introspected-doxygen.cc
This commit is contained in:
Jared Dulmage
2020-08-25 13:03:03 -06:00
committed by Tom Henderson
parent 9392a452d8
commit c8f2bf250e
6 changed files with 71 additions and 95 deletions

View File

@@ -1570,7 +1570,14 @@ PrintAttributeImplementations (std::ostream & os)
PrintAttributeValueSection (os, "ObjectMap", false);
PrintMakeAccessors (os, "ObjectMap");
PrintMakeChecker (os, "ObjectMap", "object-map.h");
PrintAttributeValueSection (os, "Pair", false);
PrintAttributeValueWithName (os, "Pair", "Pair", "pair.h");
PrintMakeChecker (os, "Pair", "pair.h");
PrintAttributeValueSection (os, "AttributeContainer", false);
PrintAttributeValueWithName (os, "AttributeContainer", "AttributeContainer", "attribute-container.h");
PrintMakeChecker (os, "AttributeContainer", "attribute-container.h");
} // PrintAttributeImplementations ()