Add support for files with more than 65280 sections. No testcase since
[oota-llvm.git] / include / llvm / Support / raw_ostream.h
index 6c20845aa741302f304388fb5b893a8ab69bfc84..6bc8935b1464c18d90c6b6e47e96f5cf5bdc5a86 100644 (file)
@@ -349,10 +349,7 @@ public:
 
   /// raw_fd_ostream ctor - FD is the file descriptor that this writes to.  If
   /// ShouldClose is true, this closes the file when the stream is destroyed.
-  raw_fd_ostream(int fd, bool shouldClose,
-                 bool unbuffered=false) : raw_ostream(unbuffered), FD(fd),
-                                          ShouldClose(shouldClose),
-                                          Error(false) {}
+  raw_fd_ostream(int fd, bool shouldClose, bool unbuffered=false);
 
   ~raw_fd_ostream();