scons: Address clang 3.2 compilation error
This patch fixes a compilation error encountered using clang 3.2 on OSX.
This commit is contained in:
@@ -91,7 +91,7 @@ ProtoOutputStream::write(const Message& msg)
|
||||
}
|
||||
|
||||
ProtoInputStream::ProtoInputStream(const string& filename) :
|
||||
fileStream(filename, ios::in | ios::binary), fileName(filename),
|
||||
fileStream(filename.c_str(), ios::in | ios::binary), fileName(filename),
|
||||
useGzip(false),
|
||||
zeroCopyStream(NULL), gzipStream(NULL), codedStream(NULL)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user