But it's forward declared as a private nested class, so you can't reference the inner class except from within the outer class<br><div class="gmail_quote"><div dir="ltr">On Mon, Apr 25, 2016 at 11:40 PM David Majnemer <<a href="mailto:david.majnemer@gmail.com">david.majnemer@gmail.com</a>> wrote:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">majnemer added inline comments.<br>
<br>
================<br>
Comment at: lib/DebugInfo/PDB/Raw/PDBDbiStream.cpp:68<br>
@@ +67,3 @@<br>
+PDBDbiStream::PDBDbiStream(PDBFile &File) : Pdb(File), Stream(3, File) {<br>
+  static_assert(sizeof(HeaderInfo) == 64, "Invalid HeaderInfo size!");<br>
+}<br>
----------------<br>
zturner wrote:<br>
> ruiu wrote:<br>
> > Can you write this outside of the constructor?<br>
> The class is forward declared as private in `PDBDbiStream.h`, so it's inaccessible outside the constructor.  I could declare it in the public section of the class, but it seemed more appropriate to be private.  I don't feel strongly either way, so let me know if you do.<br>
I don't think you need to stick it in the public section of the class, the static_assert could just follow immediately after the definition of HeaderInfo.<br>
<br>
<br>
<a href="http://reviews.llvm.org/D19500" rel="noreferrer" target="_blank">http://reviews.llvm.org/D19500</a><br>
<br>
<br>
<br>
</blockquote></div>