diff options
| -rw-r--r-- | challenge-098/paulo-custodio/cpp/ch-1.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/challenge-098/paulo-custodio/cpp/ch-1.cpp b/challenge-098/paulo-custodio/cpp/ch-1.cpp index ef08e51794..0d3f5c0cc3 100644 --- a/challenge-098/paulo-custodio/cpp/ch-1.cpp +++ b/challenge-098/paulo-custodio/cpp/ch-1.cpp @@ -39,8 +39,8 @@ public: private: // store std::ifstream in a pre-aloocated array as storing pointers to - // std::ifstream in an unordered_map was causing a heap corruption in - // GCC - probably a compiler/stdlib bug + // std::ifstream in an unordered_map was causing a heap corruption in + // GCC - probably a compiler/stdlib bug static const int MAX_FILES = 20; std::array<std::ifstream, MAX_FILES> files; std::array<std::string, MAX_FILES> filenames; |
