diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2015-04-15 16:49:58 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2015-04-15 16:49:58 -0400 |
commit | cc587b9ef98f31696428a6a1aee11ee09b851275 (patch) | |
tree | cea8804d65afe364f78df559c2d19a2987000f04 | |
parent | e9be710daf3d1135f732632d09007920e1d0ff81 (diff) |
MAINT-4744: remove nonstandard #include from llfile.h.
Changeset ffd264ca493c removed the whole llstdio_filebuf construct, which is
what depended on the __gnu_cxx::stdio_filebuf<> extension. Now, even on
Windows, ll[io]fstream very closely resembles std::[io]fstream.
Since we no longer depend on that extension, we can remove its #include.
This should (!) remove the last obstacle to building with libc++ on the Mac.
-rwxr-xr-x | indra/llcommon/llfile.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/indra/llcommon/llfile.h b/indra/llcommon/llfile.h index 423f1f4965..3e25228aeb 100755 --- a/indra/llcommon/llfile.h +++ b/indra/llcommon/llfile.h @@ -45,7 +45,6 @@ typedef FILE LLFILE; typedef struct _stat llstat; #else typedef struct stat llstat; -#include <ext/stdio_filebuf.h> #include <bits/postypes.h> #endif |