diff options
Diffstat (limited to 'challenge-100/paulo-custodio/cpp/ch-1.cpp')
| -rw-r--r-- | challenge-100/paulo-custodio/cpp/ch-1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/challenge-100/paulo-custodio/cpp/ch-1.cpp b/challenge-100/paulo-custodio/cpp/ch-1.cpp index 389d36f9c9..0516a4bd31 100644 --- a/challenge-100/paulo-custodio/cpp/ch-1.cpp +++ b/challenge-100/paulo-custodio/cpp/ch-1.cpp @@ -72,7 +72,7 @@ std::istream& operator>>(std::istream& is, Time& time) { // get optional am|pm std::string ampm; - is >> ampm; + is >> ampm; // convert from 12 to 24 format if (!ampm.empty()) { |
