Staticise a file-local function.

It is not needed outside this function.  We should, arguably, be using
an anonymous namespace in this case.
This commit is contained in:
Bård Skaflestad 2012-10-23 14:36:13 +02:00
parent b334dbcdd8
commit f8a11ef7e1

View File

@ -147,7 +147,7 @@ static bool convertKeyword( const std::string& inputFile , const std::string& ou
bool parseFile(const std::string& inputFile, std::string& outputFile, const std::string& indent = "") {
static bool parseFile(const std::string& inputFile, std::string& outputFile, const std::string& indent = "") {
bool updateFile = false;
std::cout << indent << "Parsing " << inputFile << "\n";
{