Skip to content

Commit

Permalink
add std namespace to allow verbose build
Browse files Browse the repository at this point in the history
  • Loading branch information
koomie authored and mperego committed Jan 26, 2021
1 parent 6177ebf commit 54524b5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Albany_StateManager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1137,12 +1137,12 @@ Albany::StateManager::getResidResponseIDsToRequire(
if (id.length() > 0 && ebName == elementBlockName) {
idsToRequire.push_back(id);
#ifdef ALBANY_VERBOSE
cout << "RRR1 " << name << " requiring " << id << " (" << i << ")"
<< endl;
std::cout << "RRR1 " << name << " requiring " << id << " (" << i << ")"
<< std::endl;
#endif
} else {
#ifdef ALBANY_VERBOSE
cout << "RRR1 " << name << " empty (" << i << ")" << endl;
std::cout << "RRR1 " << name << " empty (" << i << ")" << std::endl;
#endif
}
i++;
Expand Down

0 comments on commit 54524b5

Please sign in to comment.