<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[error: declaration does not declare anything]]></title><description><![CDATA[<p>In der Datei &quot;c:\MinGW4\include\wtypes.h&quot;</p>
<p>meckert der Compiler...</p>
<pre><code class="language-cpp">typedef union tagCY {
	_ANONYMOUS_STRUCT struct {
		unsigned long Lo;
		long Hi;
	}_STRUCT_NAME(s);
	LONGLONG int64;
} CY;
</code></pre>
<p>den Fehler im Beitragstitel an. Hat jemand 'ne Ahnung wieso.</p>
<p>Der Compiler steht in folgender Zeile:<br />
<strong>LONGLONG int64;</strong></p>
<p>IDE ist Codeblocks 10.05.</p>
<p>OS: Windows XP.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/306151/error-declaration-does-not-declare-anything</link><generator>RSS for Node</generator><lastBuildDate>Sat, 08 Aug 2026 12:07:24 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/306151.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 19 Jul 2012 12:37:18 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to error: declaration does not declare anything on Thu, 19 Jul 2012 12:37:18 GMT]]></title><description><![CDATA[<p>In der Datei &quot;c:\MinGW4\include\wtypes.h&quot;</p>
<p>meckert der Compiler...</p>
<pre><code class="language-cpp">typedef union tagCY {
	_ANONYMOUS_STRUCT struct {
		unsigned long Lo;
		long Hi;
	}_STRUCT_NAME(s);
	LONGLONG int64;
} CY;
</code></pre>
<p>den Fehler im Beitragstitel an. Hat jemand 'ne Ahnung wieso.</p>
<p>Der Compiler steht in folgender Zeile:<br />
<strong>LONGLONG int64;</strong></p>
<p>IDE ist Codeblocks 10.05.</p>
<p>OS: Windows XP.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2234084</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2234084</guid><dc:creator><![CDATA[FrankTheFox]]></dc:creator><pubDate>Thu, 19 Jul 2012 12:37:18 GMT</pubDate></item><item><title><![CDATA[Reply to error: declaration does not declare anything on Thu, 19 Jul 2012 12:49:12 GMT]]></title><description><![CDATA[<p>Ich rate mal, dass vorher irgendwo ein</p>
<pre><code class="language-cpp">#define LONGLONG long long;
</code></pre>
<p>steht. Mit dem ';' am Ende.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2234086</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2234086</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Thu, 19 Jul 2012 12:49:12 GMT</pubDate></item><item><title><![CDATA[Reply to error: declaration does not declare anything on Thu, 19 Jul 2012 13:11:05 GMT]]></title><description><![CDATA[<p>SeppJ schrieb:</p>
<blockquote>
<p>Ich rate mal, dass vorher irgendwo ein</p>
<pre><code class="language-cpp">#define LONGLONG long long;
</code></pre>
<p>steht. Mit dem ';' am Ende.</p>
</blockquote>
<p>Eigentlich sollte das ein typedef sein. Zumindest mein Compiler hat es richtig gemacht:</p>
<pre><code class="language-cpp">#if defined(_HAVE_INT64) || (defined(_INTEGRAL_MAX_BITS) &amp;&amp; _INTEGRAL_MAX_BITS &gt;= 64)
    typedef __int64 LONGLONG;
    typedef unsigned __int64 DWORDLONG;
#else
    typedef double LONGLONG,DWORDLONG;
#endif
</code></pre>
<p>Das eigentliche Problem könnte aber der Identifier sein. <code>int64</code> ? Probier mal <code>i</code> (einfach nur als Probe).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2234092</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2234092</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Thu, 19 Jul 2012 13:11:05 GMT</pubDate></item><item><title><![CDATA[Reply to error: declaration does not declare anything on Thu, 19 Jul 2012 19:35:28 GMT]]></title><description><![CDATA[<p>Hi,</p>
<p>jupp. Ihr habt recht! Da sind etliche Header (nicht verwunderliches). Mehrere defines und typedefs mit ...int64;<br />
also (quick und total dirty)</p>
<pre><code class="language-cpp">typedef union tagCY {
    _ANONYMOUS_STRUCT struct {
        unsigned long Lo;
        long Hi;
    }_STRUCT_NAME(s);
    LONGLONG this_int64;
} CY;
</code></pre>
<p>Jetzt geht's.</p>
<p>Gruß</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2234214</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2234214</guid><dc:creator><![CDATA[FrankTheFox]]></dc:creator><pubDate>Thu, 19 Jul 2012 19:35:28 GMT</pubDate></item></channel></rss>