We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6556841 commit 46ce0c5Copy full SHA for 46ce0c5
src/sst/core/sstinfo.cc
@@ -1026,8 +1026,7 @@ SSTLibraryInfo::outputHumanReadable(std::ostream& os, bool printAll)
1026
// called out (this will be the case if printAll is
1027
// false, but shouldPrintElement() is true)
1028
bool is_alias = (pair.second->getAlias() == pair.first);
1029
- bool print = (!is_alias && printAll) ||
1030
- (is_alias && !printAll && shouldPrintElement(getLibraryName(), pair.first));
+ bool print = (!is_alias && printAll) || (!printAll && shouldPrintElement(getLibraryName(), pair.first));
1031
1032
if ( print ) {
1033
os << " " << BaseType::ELI_baseName() << " " << idx << ": " << pair.first << "\n";
0 commit comments