mirror of
https://gitlab.com/libeigen/eigen.git
synced 2025-08-12 11:49:02 +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)
|
void add_online_info_into_contributors_list(list<contributor>& contributors_list, const char *filename)
|
||||||
{
|
{
|
||||||
string line;
|
string line;
|
||||||
ifstream churn_out;
|
ifstream online_info;
|
||||||
churn_out.open(filename, ios::in);
|
online_info.open(filename, ios::in);
|
||||||
while(!getline(churn_out,line).eof())
|
while(!getline(online_info,line).eof())
|
||||||
{
|
{
|
||||||
string hgname, realname, url, misc;
|
string hgname, realname, url, misc;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user