X-Git-Url: http://plrg.eecs.uci.edu/git/?a=blobdiff_plain;f=include%2Fllvm%2FSupport%2FYAMLTraits.h;h=c04294a5e87a735b3bf79b3475d60f47d01afab3;hb=9282af9d6c5152fc0d711fbd8a566374a00d4ef4;hp=6d934fe5128483e9dfbff9a3d2111b07700a6cc9;hpb=82fdcc0e7f6f329404bc4195f98ed0ca92988194;p=oota-llvm.git diff --git a/include/llvm/Support/YAMLTraits.h b/include/llvm/Support/YAMLTraits.h index 6d934fe5128..c04294a5e87 100644 --- a/include/llvm/Support/YAMLTraits.h +++ b/include/llvm/Support/YAMLTraits.h @@ -1114,7 +1114,7 @@ private: /// class Output : public IO { public: - Output(llvm::raw_ostream &, void *Ctxt=nullptr); + Output(llvm::raw_ostream &, void *Ctxt = nullptr, int WrapColumn = 70); ~Output() override; bool outputting() override; @@ -1170,6 +1170,7 @@ private: }; llvm::raw_ostream &Out; + int WrapColumn; SmallVector StateStack; int Column; int ColumnAtFlowStart;