Skip to content

Commit

Permalink
APREPRO: Clean up test app output
Browse files Browse the repository at this point in the history
  • Loading branch information
gsjaardema committed Oct 12, 2023
1 parent 51490f2 commit ad53ab2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/seacas/libraries/aprepro_lib/apr_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ int main(int argc, char *argv[])

if (result) {
std::string res_str = aprepro.parsing_results().str();
std::cout << " : " << res_str;
std::cout << " : " << res_str;

// Example showing how to get the substitution history for the current line.
if (aprepro.ap_options.keep_history) {
Expand All @@ -120,7 +120,7 @@ int main(int argc, char *argv[])
if (substitution == "\n") {
substitution = "<not echoed>";
}
std::cout << "'" << curr_history.original << "' was substituted with '" << substitution
std::cout << "\t'" << curr_history.original << "' was substituted with '" << substitution
<< "' at index " << curr_history.index << '\n';
}

Expand Down

0 comments on commit ad53ab2

Please sign in to comment.