Fix indentation in a part of the getFileContent() function from filefuncs.cpp.
This commit is contained in:
		
							parent
							
								
									f0e82fcc0b
								
							
						
					
					
						commit
						66dcac958c
					
				@ -10,8 +10,8 @@ string getFileContent(const string& file)
 | 
				
			|||||||
    string lineinput, fullinput;
 | 
					    string lineinput, fullinput;
 | 
				
			||||||
    filetoParse.open(file, ios::in);
 | 
					    filetoParse.open(file, ios::in);
 | 
				
			||||||
    if (filetoParse.is_open()) while (getline(filetoParse, lineinput)) {
 | 
					    if (filetoParse.is_open()) while (getline(filetoParse, lineinput)) {
 | 
				
			||||||
            fullinput.append(lineinput + "\n");
 | 
					        fullinput.append(lineinput + "\n");
 | 
				
			||||||
        }
 | 
					    }
 | 
				
			||||||
    filetoParse.close();
 | 
					    filetoParse.close();
 | 
				
			||||||
    return fullinput;
 | 
					    return fullinput;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
		Reference in New Issue
	
	Block a user