Take out some 'typename's to support older versions of gcc (Heinz).

This commit is contained in:
Joe Thornber
2013-08-15 10:35:07 +01:00
parent c6ec0c9c9c
commit 77286e0bc7
8 changed files with 18 additions and 18 deletions

View File

@@ -61,7 +61,7 @@ namespace {
}
bool file_exists(string const &path) {
typename ::stat info;
struct ::stat info;
int r = ::stat(path.c_str(), &info);
if (r) {