Skip to content
Snippets Groups Projects
Commit cafe5124 authored by Igor Danielewicz's avatar Igor Danielewicz
Browse files

Update gitignore + fixed learn_to_guess

parent 091e867e
No related merge requests found
*.o
*.a
*.pyc
*.json
Makefile*
tests/tests
*.pro.user
......@@ -11,6 +13,8 @@ CMakeFiles
CMakeLists.txt.user*
cmake_install.cmake
/bin/
/build/
*/build/
/*-build/
/doxygen/
/data/local/
......@@ -22,7 +22,7 @@ set<UnicodeString> prepare_morphfile(const path & morphfile)
{
set<UnicodeString> result;
ifstream file(morphfile.c_str());
std::ifstream file(morphfile.c_str());
string line;
while (getline(file, line))
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment