mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 03:39:01 +08:00
fix typo
This commit is contained in:
parent
51db7ab0df
commit
a279a277e3
@ -105,9 +105,9 @@ struct contributor
|
||||
void add_online_info_into_contributors_list(list<contributor>& contributors_list, const char *filename)
|
||||
{
|
||||
string line;
|
||||
ifstream churn_out;
|
||||
churn_out.open(filename, ios::in);
|
||||
while(!getline(churn_out,line).eof())
|
||||
ifstream online_info;
|
||||
online_info.open(filename, ios::in);
|
||||
while(!getline(online_info,line).eof())
|
||||
{
|
||||
string hgname, realname, url, misc;
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user