<?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[&amp;lt;algorithm&amp;gt; MFC Problem]]></title><description><![CDATA[<p>Hallo</p>
<p>Mit C++v6.<br />
#include &lt;algorithm&gt;<br />
sort(z,z+3);</p>
<p>In einer konsolen anwendung gibt es keine probleme.</p>
<p>Aber mit dem MFC gehts nicht. ich bekomme ein fehler<br />
error C2065: 'sort' : nichtdeklarierter Bezeichner</p>
<p>#include &quot;stdafx.h&quot;<br />
#include &quot;MaxMidiProto.h&quot;<br />
#include &quot;MaxMidiProtoDlg.h&quot;<br />
#include &quot;.\maxmidiprotodlg.h&quot;<br />
#include &lt;algorithm&gt;</p>
<p>ich habe mal in der include dateien nach geschaut ich finde keine<br />
algorithm.h</p>
<p>was stimmt da nicht?</p>
<p>kann mir jemand weiter helfen ? Bitte!</p>
<p>Grüße Can</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/63692/lt-algorithm-gt-mfc-problem</link><generator>RSS for Node</generator><lastBuildDate>Thu, 04 Jun 2026 12:25:20 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/63692.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 03 Feb 2004 23:03:08 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to &amp;lt;algorithm&amp;gt; MFC Problem on Tue, 03 Feb 2004 23:03:08 GMT]]></title><description><![CDATA[<p>Hallo</p>
<p>Mit C++v6.<br />
#include &lt;algorithm&gt;<br />
sort(z,z+3);</p>
<p>In einer konsolen anwendung gibt es keine probleme.</p>
<p>Aber mit dem MFC gehts nicht. ich bekomme ein fehler<br />
error C2065: 'sort' : nichtdeklarierter Bezeichner</p>
<p>#include &quot;stdafx.h&quot;<br />
#include &quot;MaxMidiProto.h&quot;<br />
#include &quot;MaxMidiProtoDlg.h&quot;<br />
#include &quot;.\maxmidiprotodlg.h&quot;<br />
#include &lt;algorithm&gt;</p>
<p>ich habe mal in der include dateien nach geschaut ich finde keine<br />
algorithm.h</p>
<p>was stimmt da nicht?</p>
<p>kann mir jemand weiter helfen ? Bitte!</p>
<p>Grüße Can</p>
]]></description><link>https://www.c-plusplus.net/forum/post/451136</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/451136</guid><dc:creator><![CDATA[can28]]></dc:creator><pubDate>Tue, 03 Feb 2004 23:03:08 GMT</pubDate></item><item><title><![CDATA[Reply to &amp;lt;algorithm&amp;gt; MFC Problem on Wed, 04 Feb 2004 07:34:33 GMT]]></title><description><![CDATA[<p>sort liegt im Namensraum std::</p>
<p>Also std::sort</p>
<p>oder using namespace std;<br />
alternativ using std::sort;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/451206</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/451206</guid><dc:creator><![CDATA[Knuddlbaer]]></dc:creator><pubDate>Wed, 04 Feb 2004 07:34:33 GMT</pubDate></item></channel></rss>