<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote">On Thu, Sep 4, 2014 at 2:07 PM, Benjamin Kramer <span dir="ltr"><<a href="mailto:benny.kra@gmail.com" target="_blank">benny.kra@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="">REPOSITORY<br>
  rL LLVM<br>
<br>
================<br>
Comment at: clang-tidy/ClangTidy.cpp:374<br>
@@ +373,3 @@<br>
+  yaml::Output YAML(OS);<br>
+  YAML << TUR;<br>
+}<br>
----------------<br>
</div><div class="">alexfh wrote:<br>
> bkramer wrote:<br>
> > alexfh wrote:<br>
> > > "return YAML.error();" seems like a good idea in case the file is not writable or any other error occurs.<br>
> > yaml::Output has no way to retrieve errors :(<br>
> Oh, didn't know that. In this case, you could use raw_fd_ostream::has_error() after manually closing it. It doesn't provide much detail about what was wrong, but it's better than nothing. WDYT?<br>
</div>raw_ostream will report a fatal error on close anyways when anything went wrong (and we didn't clear the error). The only thing we could do is provide a nicer message, not sure if that's worth the additional code.</blockquote>
<div><br></div><div>Ah, OK then. </div></div>
</div></div>