Skip to content

Commit

Permalink
Merge pull request #111 from hwangswan/master
Browse files Browse the repository at this point in the history
Small update
  • Loading branch information
trhgquan authored Apr 29, 2022
2 parents 7655e5f + 15c88fa commit 6605ad0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 39 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ obj/
coverage/
main
tests/main
data/
38 changes: 0 additions & 38 deletions data/19120338.csv

This file was deleted.

2 changes: 1 addition & 1 deletion src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ int main(int argc, char *argv[]) {
// Print credit stats
if (chumeochuixoong->getTotalCoursesPassed() > 0) {
std::cout << "Passed credit details: " << '\n';
for (auto &credit : chumeochuixoong->getCreditDetail()) {
for (const auto &credit : chumeochuixoong->getCreditDetail()) {
std::cout << "Courses type " << credit.first << ": " << credit.second
<< " ("
<< Utility::percent(credit.second,
Expand Down

0 comments on commit 6605ad0

Please sign in to comment.