If you start with a string literal, then the form:<div><br></div><div>vtkErrorMacro(&quot;string&quot;)</div><div><br></div><div>or</div><div><br></div><div>vtkErrorMacro(&quot;string&quot; &lt;&lt; variable &lt;&lt; &quot;, &quot; &lt;&lt; more_stuff);</div>
<div><br></div><div>works fine. If you need to start with a variable, then to effectively put the &quot;&lt;&lt;&quot; before the &quot;x&quot; in your example, you need to start with &quot;&lt;&lt;&quot;:</div><div><br></div>
<div>vtkErrorMacro(&lt;&lt; fname &lt;&lt; &quot; invalid&quot;);</div><div><br></div><div>Indeed, not starting with &quot;&lt;&lt;&quot; is a shortcut that only works with string literals. Many places in VTK start the error macro with &quot;&lt;&lt;&quot; when needed.</div>
<div><br></div><div>Jeff<br><br><div class="gmail_quote">On Sat, Nov 20, 2010 at 7:27 PM, Mark Roden <span dir="ltr">&lt;<a href="mailto:mmroden@gmail.com">mmroden@gmail.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">
I should add, this is with visual studio 2008 on a windows 7 machine, 64 bit compiler.<div><div></div><div class="h5"><br><br><div class="gmail_quote">On Sat, Nov 20, 2010 at 4:13 PM, Mark Roden <span dir="ltr">&lt;<a href="mailto:mmroden@gmail.com" target="_blank">mmroden@gmail.com</a>&gt;</span> wrote:<br>

<blockquote class="gmail_quote" style="margin:0pt 0pt 0pt 0.8ex;border-left:1px solid rgb(204, 204, 204);padding-left:1ex">Hi all,<br><br>I&#39;m having a problem with the vtk error macro, and was hoping someone could shed some light on the issue.<br>

<br>The relevant lines for this problem start on line 467 of vtkGetSet.h from the git head:<br>
<br>     vtkmsg &lt;&lt; &quot;ERROR: In &quot; __FILE__ &quot;, line &quot; &lt;&lt; __LINE__      \<br>            &lt;&lt; &quot;\n&quot; &lt;&lt; self-&gt;GetClassName() &lt;&lt; &quot; (&quot; &lt;&lt; self     \<br>


            &lt;&lt; &quot;): &quot;  x &lt;&lt; &quot;\n\n&quot;;                            \<br><br>If x is a std::string, the above fails to compile, but the following is fine:<br><br>     vtkmsg &lt;&lt; &quot;ERROR: In &quot; __FILE__ &quot;, line &quot; &lt;&lt; __LINE__      \<br>


            &lt;&lt; &quot;\n&quot; &lt;&lt; self-&gt;GetClassName() &lt;&lt; &quot; (&quot; &lt;&lt; self     \<br>            &lt;&lt; &quot;): &quot; &lt;&lt; x &lt;&lt; &quot;\n\n&quot;;                            \<br>


<br>Note the extra &lt;&lt; right before x.<br><br>I&#39;m doing this to debug a problem in the vtkGDCMImageReader I&#39;m having where images aren&#39;t being read in Java, but are read just fine in C++-- I think that there&#39;s a problem with string termination, but I don&#39;t know.  So, I want to add the filename to the debug message.<br>


<br>The lines in gdcm are:<br><br>  if( !reader.Read() )<br>    {<br>      //added more detail for those instances where you can&#39;t debug, like in java<br>      std::string theFilename(filename);<br>      std::string theError = &quot;ImageReader failed on file: &quot; + theFilename;<br>


      vtkErrorMacro( theError );<br>      return 0;<br>    }<br><br>and they were:<br><br>  if( !reader.Read() )<br>    {<br>      vtkErrorMacro( &quot;ImageReader failed&quot; );<br>      return 0;<br>    }<br><br>I don&#39;t want to change vtk at all, I want to use what exists.  I could just modify my version right now to make my error message work (or at least compile)-- but how should I use the warning/error macros to get more information out than just a pure const char*?  I tried to use theError.c_str(), but that also failed.  It also failed to compile if I just sent filename over directly, as in vtkErrorMacro(filename);<br>


<br>Thanks,<br><font color="#888888">Mark<br><br>
</font></blockquote></div><br>
</div></div><br>_______________________________________________<br>
Powered by <a href="http://www.kitware.com" target="_blank">www.kitware.com</a><br>
<br>
Visit other Kitware open-source projects at <a href="http://www.kitware.com/opensource/opensource.html" target="_blank">http://www.kitware.com/opensource/opensource.html</a><br>
<br>
Please keep messages on-topic and check the VTK FAQ at: <a href="http://www.vtk.org/Wiki/VTK_FAQ" target="_blank">http://www.vtk.org/Wiki/VTK_FAQ</a><br>
<br>
Follow this link to subscribe/unsubscribe:<br>
<a href="http://www.vtk.org/mailman/listinfo/vtkusers" target="_blank">http://www.vtk.org/mailman/listinfo/vtkusers</a><br>
<br></blockquote></div><br>
</div>