<?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[Linker-Fehler, den ich nicht verstehe]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe ein Problem mit einer Fehlermeldung, die ich weder verstehe noch wegbekomme. Vielleicht weiß ja von euch jemand einen Rat. Folgender Code liegt vor:</p>
<p>Datei &quot;node.h&quot;</p>
<pre><code class="language-cpp">.
.
.
#include &lt;iostream&gt;
#include &lt;vector&gt;
#include &lt;string&gt;
using namespace std;

class edge;

class node {
public:
.
.
.
    typedef std::vector&lt;edge *&gt;::iterator edge_iterator;
    void aushaengen(edge *e);    
    edge_iterator edge_begin();
    edge_iterator edge_end();
};
</code></pre>
<p>Die Datei &quot;node.cpp&quot;</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &quot;edge.h&quot;
#include &quot;node.h&quot;
#include &lt;iterator&gt;
using namespace std;
.
.
.

void node::aushaengen(edge *e)
{
      edge_iterator eit;

      //Problem
      for (eit = e_begin (); eit != e_end (); ++eit)
            if (*eit == e)
                  break;
      if (eit == e_end ())
            return; 
      edges.erase (eit);
}
</code></pre>
<p>Ich habe einige unwichtige Bestandteile weggelassen. Das Problem liegt am e_iterator eit in der node.cpp-Datei. Ich habe die entsprechende Stelle mit &quot;//Problem&quot; gekennzeichnet. Sobald ich diesen Problemteil auskommentiere compiliert mein Programm. Aber wenn die for-Schleife und das, was folgt, drin ist, dann kommt folgende Fehlermeldung:</p>
<p>node.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol &quot;&quot;public: class std::_Vector_iterator&lt;class edge *,class std::allocator&lt;class edge *&gt; &gt; __thiscall node::e_end(void)&quot; (?e_end@node@@QAE?AV?<span class="katex"><span class="katex-mathml"><math><semantics><mrow><mi mathvariant="normal">_</mi><mi>V</mi><mi>e</mi><mi>c</mi><mi>t</mi><mi>o</mi><mi>r</mi><mi mathvariant="normal">_</mi><mi>i</mi><mi>t</mi><mi>e</mi><mi>r</mi><mi>a</mi><mi>t</mi><mi>o</mi><mi>r</mi><mi mathvariant="normal">@</mi><mi>P</mi><mi>A</mi><mi>V</mi><mi>e</mi><mi>d</mi><mi>g</mi><mi>e</mi><mi mathvariant="normal">@</mi><mi mathvariant="normal">@</mi><mi>V</mi><mo>?</mo></mrow><annotation encoding="application/x-tex">\_Vector\_iterator@PAVedge@@V?</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="strut" style="height:0.69444em;"></span><span class="strut bottom" style="height:1.00444em;vertical-align:-0.31em;"></span><span class="base textstyle uncramped"><span class="mord mathrm" style="margin-right:0.02778em;">_</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mord mathit">e</span><span class="mord mathit">c</span><span class="mord mathit">t</span><span class="mord mathit">o</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathrm" style="margin-right:0.02778em;">_</span><span class="mord mathit">i</span><span class="mord mathit">t</span><span class="mord mathit">e</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathit">a</span><span class="mord mathit">t</span><span class="mord mathit">o</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathrm">@</span><span class="mord mathit" style="margin-right:0.13889em;">P</span><span class="mord mathit">A</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mord mathit">e</span><span class="mord mathit">d</span><span class="mord mathit" style="margin-right:0.03588em;">g</span><span class="mord mathit">e</span><span class="mord mathrm">@</span><span class="mord mathrm">@</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mclose">?</span></span></span></span>allocator@PAVedge@@@std@@@std@@XZ)&quot; in Funktion &quot;&quot;public: void __thiscall node::aushaengen(class edge *)&quot; (?unhook@node@@QAEXPAVedge@@@Z)&quot;.<br />
node.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol &quot;&quot;public: class std::_Vector_iterator&lt;class edge *,class std::allocator&lt;class edge *&gt; &gt; __thiscall node::e_begin(void)&quot; (?e_begin@node@@QAE?AV?<span class="katex"><span class="katex-mathml"><math><semantics><mrow><mi mathvariant="normal">_</mi><mi>V</mi><mi>e</mi><mi>c</mi><mi>t</mi><mi>o</mi><mi>r</mi><mi mathvariant="normal">_</mi><mi>i</mi><mi>t</mi><mi>e</mi><mi>r</mi><mi>a</mi><mi>t</mi><mi>o</mi><mi>r</mi><mi mathvariant="normal">@</mi><mi>P</mi><mi>A</mi><mi>V</mi><mi>e</mi><mi>d</mi><mi>g</mi><mi>e</mi><mi mathvariant="normal">@</mi><mi mathvariant="normal">@</mi><mi>V</mi><mo>?</mo></mrow><annotation encoding="application/x-tex">\_Vector\_iterator@PAVedge@@V?</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="strut" style="height:0.69444em;"></span><span class="strut bottom" style="height:1.00444em;vertical-align:-0.31em;"></span><span class="base textstyle uncramped"><span class="mord mathrm" style="margin-right:0.02778em;">_</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mord mathit">e</span><span class="mord mathit">c</span><span class="mord mathit">t</span><span class="mord mathit">o</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathrm" style="margin-right:0.02778em;">_</span><span class="mord mathit">i</span><span class="mord mathit">t</span><span class="mord mathit">e</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathit">a</span><span class="mord mathit">t</span><span class="mord mathit">o</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathrm">@</span><span class="mord mathit" style="margin-right:0.13889em;">P</span><span class="mord mathit">A</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mord mathit">e</span><span class="mord mathit">d</span><span class="mord mathit" style="margin-right:0.03588em;">g</span><span class="mord mathit">e</span><span class="mord mathrm">@</span><span class="mord mathrm">@</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mclose">?</span></span></span></span>allocator@PAVedge@@@std@@@std@@XZ)&quot; in Funktion &quot;&quot;public: void __thiscall node::aushaengen(class edge *)&quot; (?unhook@node@@QAEXPAVedge@@@Z)&quot;.</p>
<p>Was bedeutet diese Fehlermeldung und wie kann ich den Fehler beseitigen? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
<p>Ich glaube, ich hab da irgendwas mit den Klassen falsch gemacht. Aber ich sehe nicht was da falsch sein könnte. Ich benutze übrigens Visual Studio 2008.<br />
Danke für eure Hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/272549/linker-fehler-den-ich-nicht-verstehe</link><generator>RSS for Node</generator><lastBuildDate>Mon, 24 Aug 2026 04:04:55 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/272549.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 19 Aug 2010 16:18:33 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Linker-Fehler, den ich nicht verstehe on Thu, 19 Aug 2010 16:20:36 GMT]]></title><description><![CDATA[<p>Hallo,</p>
<p>ich habe ein Problem mit einer Fehlermeldung, die ich weder verstehe noch wegbekomme. Vielleicht weiß ja von euch jemand einen Rat. Folgender Code liegt vor:</p>
<p>Datei &quot;node.h&quot;</p>
<pre><code class="language-cpp">.
.
.
#include &lt;iostream&gt;
#include &lt;vector&gt;
#include &lt;string&gt;
using namespace std;

class edge;

class node {
public:
.
.
.
    typedef std::vector&lt;edge *&gt;::iterator edge_iterator;
    void aushaengen(edge *e);    
    edge_iterator edge_begin();
    edge_iterator edge_end();
};
</code></pre>
<p>Die Datei &quot;node.cpp&quot;</p>
<pre><code class="language-cpp">#include &lt;iostream&gt;
#include &quot;edge.h&quot;
#include &quot;node.h&quot;
#include &lt;iterator&gt;
using namespace std;
.
.
.

void node::aushaengen(edge *e)
{
      edge_iterator eit;

      //Problem
      for (eit = e_begin (); eit != e_end (); ++eit)
            if (*eit == e)
                  break;
      if (eit == e_end ())
            return; 
      edges.erase (eit);
}
</code></pre>
<p>Ich habe einige unwichtige Bestandteile weggelassen. Das Problem liegt am e_iterator eit in der node.cpp-Datei. Ich habe die entsprechende Stelle mit &quot;//Problem&quot; gekennzeichnet. Sobald ich diesen Problemteil auskommentiere compiliert mein Programm. Aber wenn die for-Schleife und das, was folgt, drin ist, dann kommt folgende Fehlermeldung:</p>
<p>node.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol &quot;&quot;public: class std::_Vector_iterator&lt;class edge *,class std::allocator&lt;class edge *&gt; &gt; __thiscall node::e_end(void)&quot; (?e_end@node@@QAE?AV?<span class="katex"><span class="katex-mathml"><math><semantics><mrow><mi mathvariant="normal">_</mi><mi>V</mi><mi>e</mi><mi>c</mi><mi>t</mi><mi>o</mi><mi>r</mi><mi mathvariant="normal">_</mi><mi>i</mi><mi>t</mi><mi>e</mi><mi>r</mi><mi>a</mi><mi>t</mi><mi>o</mi><mi>r</mi><mi mathvariant="normal">@</mi><mi>P</mi><mi>A</mi><mi>V</mi><mi>e</mi><mi>d</mi><mi>g</mi><mi>e</mi><mi mathvariant="normal">@</mi><mi mathvariant="normal">@</mi><mi>V</mi><mo>?</mo></mrow><annotation encoding="application/x-tex">\_Vector\_iterator@PAVedge@@V?</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="strut" style="height:0.69444em;"></span><span class="strut bottom" style="height:1.00444em;vertical-align:-0.31em;"></span><span class="base textstyle uncramped"><span class="mord mathrm" style="margin-right:0.02778em;">_</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mord mathit">e</span><span class="mord mathit">c</span><span class="mord mathit">t</span><span class="mord mathit">o</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathrm" style="margin-right:0.02778em;">_</span><span class="mord mathit">i</span><span class="mord mathit">t</span><span class="mord mathit">e</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathit">a</span><span class="mord mathit">t</span><span class="mord mathit">o</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathrm">@</span><span class="mord mathit" style="margin-right:0.13889em;">P</span><span class="mord mathit">A</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mord mathit">e</span><span class="mord mathit">d</span><span class="mord mathit" style="margin-right:0.03588em;">g</span><span class="mord mathit">e</span><span class="mord mathrm">@</span><span class="mord mathrm">@</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mclose">?</span></span></span></span>allocator@PAVedge@@@std@@@std@@XZ)&quot; in Funktion &quot;&quot;public: void __thiscall node::aushaengen(class edge *)&quot; (?unhook@node@@QAEXPAVedge@@@Z)&quot;.<br />
node.obj : error LNK2019: Verweis auf nicht aufgelöstes externes Symbol &quot;&quot;public: class std::_Vector_iterator&lt;class edge *,class std::allocator&lt;class edge *&gt; &gt; __thiscall node::e_begin(void)&quot; (?e_begin@node@@QAE?AV?<span class="katex"><span class="katex-mathml"><math><semantics><mrow><mi mathvariant="normal">_</mi><mi>V</mi><mi>e</mi><mi>c</mi><mi>t</mi><mi>o</mi><mi>r</mi><mi mathvariant="normal">_</mi><mi>i</mi><mi>t</mi><mi>e</mi><mi>r</mi><mi>a</mi><mi>t</mi><mi>o</mi><mi>r</mi><mi mathvariant="normal">@</mi><mi>P</mi><mi>A</mi><mi>V</mi><mi>e</mi><mi>d</mi><mi>g</mi><mi>e</mi><mi mathvariant="normal">@</mi><mi mathvariant="normal">@</mi><mi>V</mi><mo>?</mo></mrow><annotation encoding="application/x-tex">\_Vector\_iterator@PAVedge@@V?</annotation></semantics></math></span><span class="katex-html" aria-hidden="true"><span class="strut" style="height:0.69444em;"></span><span class="strut bottom" style="height:1.00444em;vertical-align:-0.31em;"></span><span class="base textstyle uncramped"><span class="mord mathrm" style="margin-right:0.02778em;">_</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mord mathit">e</span><span class="mord mathit">c</span><span class="mord mathit">t</span><span class="mord mathit">o</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathrm" style="margin-right:0.02778em;">_</span><span class="mord mathit">i</span><span class="mord mathit">t</span><span class="mord mathit">e</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathit">a</span><span class="mord mathit">t</span><span class="mord mathit">o</span><span class="mord mathit" style="margin-right:0.02778em;">r</span><span class="mord mathrm">@</span><span class="mord mathit" style="margin-right:0.13889em;">P</span><span class="mord mathit">A</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mord mathit">e</span><span class="mord mathit">d</span><span class="mord mathit" style="margin-right:0.03588em;">g</span><span class="mord mathit">e</span><span class="mord mathrm">@</span><span class="mord mathrm">@</span><span class="mord mathit" style="margin-right:0.22222em;">V</span><span class="mclose">?</span></span></span></span>allocator@PAVedge@@@std@@@std@@XZ)&quot; in Funktion &quot;&quot;public: void __thiscall node::aushaengen(class edge *)&quot; (?unhook@node@@QAEXPAVedge@@@Z)&quot;.</p>
<p>Was bedeutet diese Fehlermeldung und wie kann ich den Fehler beseitigen? <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
<p>Ich glaube, ich hab da irgendwas mit den Klassen falsch gemacht. Aber ich sehe nicht was da falsch sein könnte. Ich benutze übrigens Visual Studio 2008.<br />
Danke für eure Hilfe</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942099</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942099</guid><dc:creator><![CDATA[Euler]]></dc:creator><pubDate>Thu, 19 Aug 2010 16:20:36 GMT</pubDate></item><item><title><![CDATA[Reply to Linker-Fehler, den ich nicht verstehe on Thu, 19 Aug 2010 16:30:41 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">#ifndef _KLASSENNAME_
#define _KLASSENNAME_

//hier Klasse einfügen

#endif _KLASSENNAME_
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1942103</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942103</guid><dc:creator><![CDATA[Omicron]]></dc:creator><pubDate>Thu, 19 Aug 2010 16:30:41 GMT</pubDate></item><item><title><![CDATA[Reply to Linker-Fehler, den ich nicht verstehe on Thu, 19 Aug 2010 16:37:03 GMT]]></title><description><![CDATA[<p>Omicron schrieb:</p>
<blockquote>
<pre><code class="language-cpp">#ifndef _KLASSENNAME_
#define _KLASSENNAME_

//hier Klasse einfügen

#endif _KLASSENNAME_
</code></pre>
</blockquote>
<p>Das hab ich in der Datei node.h schon drinstehen, aber hier halt nicht aufgeführt. Daran kanns also nicht liegen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942106</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942106</guid><dc:creator><![CDATA[Euler]]></dc:creator><pubDate>Thu, 19 Aug 2010 16:37:03 GMT</pubDate></item><item><title><![CDATA[Reply to Linker-Fehler, den ich nicht verstehe on Thu, 19 Aug 2010 16:57:11 GMT]]></title><description><![CDATA[<p>Wo sind aushaengen edge_begin edge_end definiert? Oder hast du nur das node:: vergessen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942114</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942114</guid><dc:creator><![CDATA[drakon]]></dc:creator><pubDate>Thu, 19 Aug 2010 16:57:11 GMT</pubDate></item><item><title><![CDATA[Reply to Linker-Fehler, den ich nicht verstehe on Thu, 19 Aug 2010 17:20:45 GMT]]></title><description><![CDATA[<p>Danke an alle, die mir geholfen haben. Ich bin ein Blödmann....hab nur was auskommentiert gehabt weiter unten und hab das nicht gesehen. Thread löschen bitte <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
<p>Edit: zu meiner Verteigigung...ich bin farbenblind und sehe die grün auskommentierten Zeilen nicht. Und so ein /* und */ kann man schon mal übersehen. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942121</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942121</guid><dc:creator><![CDATA[Euler]]></dc:creator><pubDate>Thu, 19 Aug 2010 17:20:45 GMT</pubDate></item><item><title><![CDATA[Reply to Linker-Fehler, den ich nicht verstehe on Thu, 19 Aug 2010 17:53:02 GMT]]></title><description><![CDATA[<p>Euler schrieb:</p>
<blockquote>
<p>Danke an alle, die mir geholfen haben. Ich bin ein Blödmann....hab nur was auskommentiert gehabt weiter unten und hab das nicht gesehen. Thread löschen bitte <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
<p>Edit: zu meiner Verteigigung...ich bin farbenblind und sehe die grün auskommentierten Zeilen nicht. Und so ein /* und */ kann man schon mal übersehen. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
</blockquote>
<p>Kein Problem! <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942132</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942132</guid><dc:creator><![CDATA[Omicron]]></dc:creator><pubDate>Thu, 19 Aug 2010 17:53:02 GMT</pubDate></item><item><title><![CDATA[Reply to Linker-Fehler, den ich nicht verstehe on Thu, 19 Aug 2010 18:10:52 GMT]]></title><description><![CDATA[<p>Euler schrieb:</p>
<blockquote>
<p>Edit: zu meiner Verteigigung...ich bin farbenblind und sehe die grün auskommentierten Zeilen nicht. Und so ein /* und */ kann man schon mal übersehen. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
</blockquote>
<p>Bei den meisten IDEs kann man das Farbschema ändern. Wäre ggf. in Deinem Fall sinnvoll. Häufig gibt es sogar vordefinierte Schemata für Leute mit irgendwelchen Sehschwächen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942137</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942137</guid><dc:creator><![CDATA[Tachyon]]></dc:creator><pubDate>Thu, 19 Aug 2010 18:10:52 GMT</pubDate></item><item><title><![CDATA[Reply to Linker-Fehler, den ich nicht verstehe on Fri, 20 Aug 2010 14:07:04 GMT]]></title><description><![CDATA[<p>Und noch ein Hinweis:<br />
Niemals &quot;using namespace std;&quot; im Header verwenden!!!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1942437</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1942437</guid><dc:creator><![CDATA[Th69]]></dc:creator><pubDate>Fri, 20 Aug 2010 14:07:04 GMT</pubDate></item><item><title><![CDATA[Reply to Linker-Fehler, den ich nicht verstehe on Thu, 13 Jan 2011 12:21:36 GMT]]></title><description><![CDATA[<p>Euler schrieb:</p>
<blockquote>
<p>Danke an alle, die mir geholfen haben. Ich bin ein Blödmann....hab nur was auskommentiert gehabt weiter unten und hab das nicht gesehen. Thread löschen bitte <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f61e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--disappointed_face"
      title=":("
      alt="😞"
    /></p>
<p>Edit: zu meiner Verteigigung...ich bin farbenblind und sehe die grün auskommentierten Zeilen nicht. Und so ein /* und */ kann man schon mal übersehen. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
</blockquote>
<p>Was war denn nun genau das Problem, bzw. wie hast du es gelöst? Ich hab ziemlich genau das gleiche Problem (beim Durchiterieren findet er das Iterator-Symbol nicht).<br />
Irgendwie vermute ich ja, dass die Fehlermeldung nur ein Nebeneffekt eines ganz anderen Problems ist ...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2006038</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2006038</guid><dc:creator><![CDATA[Mab12]]></dc:creator><pubDate>Thu, 13 Jan 2011 12:21:36 GMT</pubDate></item></channel></rss>