From 6de24c0680cabda127e198433a95aa426ca834e9 Mon Sep 17 00:00:00 2001 From: Mattrixwv Date: Sat, 3 Jul 2021 14:18:15 -0400 Subject: [PATCH] Fixed linux run bug --- src/Problems/Problem22.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Problems/Problem22.cpp b/src/Problems/Problem22.cpp index 4ddadc9..da54bdc 100644 --- a/src/Problems/Problem22.cpp +++ b/src/Problems/Problem22.cpp @@ -34,7 +34,7 @@ //Take the names from the file and insert them into the vector void Problem22::getNames(){ - std::ifstream inFile("files/Problem22Names.txt"); + std::ifstream inFile("files/problem22Names.txt"); if(!inFile.is_open()){ inFile.open("../files/problem22Names.txt"); }