Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
C
corpus2
Manage
Activity
Members
Labels
Plan
Issues
4
Issue boards
Milestones
Wiki
Redmine
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Analysers
corpus2
Commits
cafe5124
Commit
cafe5124
authored
7 years ago
by
Igor Danielewicz
Browse files
Options
Downloads
Patches
Plain Diff
Update gitignore + fixed learn_to_guess
parent
091e867e
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+4
-0
4 additions, 0 deletions
.gitignore
learn_to_guess/main.cpp
+1
-1
1 addition, 1 deletion
learn_to_guess/main.cpp
with
5 additions
and
1 deletion
.gitignore
+
4
−
0
View file @
cafe5124
*.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/
This diff is collapsed.
Click to expand it.
learn_to_guess/main.cpp
+
1
−
1
View file @
cafe5124
...
...
@@ -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
))
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment