<?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[Automatische Fehlermeldungs-Formatierung bei Templates]]></title><description><![CDATA[<p>Guten Morgen,</p>
<p>Bevor ich mich selbst dran mache, eine kleine Beschreibung meines Vorhabens.</p>
<p>Mich nerven Dinger wie das hier:</p>
<p>GCC 4.6.2 schrieb:</p>
<blockquote>
<p>error: use of deleted function 'slice_iter&lt;__gnu_cxx::__normal_iterator&lt;const FourWins::GameLogic::ConnectFourFigure*, std::vector&lt;FourWins::GameLogic::ConnectFourFigure, std::allocator<a href="FourWins::GameLogic::ConnectFourFigure" rel="nofollow">FourWins::GameLogic::ConnectFourFigure</a> &gt; &gt; &gt;&amp; slice_iter&lt;__gnu_cxx::__normal_iterator&lt;const FourWins::GameLogic::ConnectFourFigure*, std::vector&lt;FourWins::GameLogic::ConnectFourFigure, std::allocator<a href="FourWins::GameLogic::ConnectFourFigure" rel="nofollow">FourWins::GameLogic::ConnectFourFigure</a> &gt; &gt; &gt;::operator=(const slice_iter&lt;__gnu_cxx::__normal_iterator&lt;const FourWins::GameLogic::ConnectFourFigure*, std::vector&lt;FourWins::GameLogic::ConnectFourFigure, std::allocator<a href="FourWins::GameLogic::ConnectFourFigure" rel="nofollow">FourWins::GameLogic::ConnectFourFigure</a> &gt; &gt; &gt;&amp;)'</p>
</blockquote>
<p>(Hier sieht das übrigens noch ok aus, aber nur weil es sich <strong>zufällig</strong> so gut formatiert dank dem Forum).</p>
<p>Wahnsinn. Bei CodeBlocks unerträglich. Ich habe mir überlegt, ich schreibe ein Programm das es automatisch formatiert, wie ich es meistens im Editor mache:</p>
<pre><code>slice_iter
&lt;
	__gnu_cxx::__normal_iterator
	&lt;
		const FourWins::GameLogic::ConnectFourFigure*, 
		std::vector
		&lt;
			FourWins::GameLogic::ConnectFourFigure, std::allocator&lt;FourWins::GameLogic::ConnectFourFigure&gt; 
		&gt;
	&gt; 
&gt;&amp; 

slice_iter
&lt;
	__gnu_cxx::__normal_iterator
	&lt;
		const FourWins::GameLogic::ConnectFourFigure*, 
		std::vector
		&lt;
			FourWins::GameLogic::ConnectFourFigure, 
			std::allocator&lt;FourWins::GameLogic::ConnectFourFigure&gt; 
		&gt; 
	&gt; 
&gt;::operator=(const slice_iter
             &lt;
            	__gnu_cxx::__normal_iterator
             	&lt;
           		const FourWins::GameLogic::ConnectFourFigure*, 
            		std::vector
             		&lt;
            			FourWins::GameLogic::ConnectFourFigure, 
            			std::allocator&lt;FourWins::GameLogic::ConnectFourFigure&gt; 
            		&gt; 
            	&gt; 
            &gt;&amp;)
</code></pre>
<p>Man sieht direkt, also ich jedenfalls, der Zuweisungsoperator wurde nicht überladen bzw. wahrscheinlich implizit als deleted deklariert.</p>
<p>Edit: Weitere Abkürzungen wären:</p>
<ul>
<li>Die Parameterliste von <code>std::allocator</code> wird weggelassen.</li>
<li>ggf. Wird die komplette Parameterliste von <code>__gnu_cxx::__normal_iterator</code> und Konsorten weggelassen. Komplett. Die will auch keiner.</li>
</ul>
<p>Gibt es schon sowas ähnliches - sicher, oder?</p>
<p>MfG</p>
<p>Edit: Ich mach mich mal ran.</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/317243/automatische-fehlermeldungs-formatierung-bei-templates</link><generator>RSS for Node</generator><lastBuildDate>Wed, 29 Jul 2026 11:25:39 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/317243.rss" rel="self" type="application/rss+xml"/><pubDate>Sat, 01 Jun 2013 10:15:14 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 10:28:31 GMT]]></title><description><![CDATA[<p>Guten Morgen,</p>
<p>Bevor ich mich selbst dran mache, eine kleine Beschreibung meines Vorhabens.</p>
<p>Mich nerven Dinger wie das hier:</p>
<p>GCC 4.6.2 schrieb:</p>
<blockquote>
<p>error: use of deleted function 'slice_iter&lt;__gnu_cxx::__normal_iterator&lt;const FourWins::GameLogic::ConnectFourFigure*, std::vector&lt;FourWins::GameLogic::ConnectFourFigure, std::allocator<a href="FourWins::GameLogic::ConnectFourFigure" rel="nofollow">FourWins::GameLogic::ConnectFourFigure</a> &gt; &gt; &gt;&amp; slice_iter&lt;__gnu_cxx::__normal_iterator&lt;const FourWins::GameLogic::ConnectFourFigure*, std::vector&lt;FourWins::GameLogic::ConnectFourFigure, std::allocator<a href="FourWins::GameLogic::ConnectFourFigure" rel="nofollow">FourWins::GameLogic::ConnectFourFigure</a> &gt; &gt; &gt;::operator=(const slice_iter&lt;__gnu_cxx::__normal_iterator&lt;const FourWins::GameLogic::ConnectFourFigure*, std::vector&lt;FourWins::GameLogic::ConnectFourFigure, std::allocator<a href="FourWins::GameLogic::ConnectFourFigure" rel="nofollow">FourWins::GameLogic::ConnectFourFigure</a> &gt; &gt; &gt;&amp;)'</p>
</blockquote>
<p>(Hier sieht das übrigens noch ok aus, aber nur weil es sich <strong>zufällig</strong> so gut formatiert dank dem Forum).</p>
<p>Wahnsinn. Bei CodeBlocks unerträglich. Ich habe mir überlegt, ich schreibe ein Programm das es automatisch formatiert, wie ich es meistens im Editor mache:</p>
<pre><code>slice_iter
&lt;
	__gnu_cxx::__normal_iterator
	&lt;
		const FourWins::GameLogic::ConnectFourFigure*, 
		std::vector
		&lt;
			FourWins::GameLogic::ConnectFourFigure, std::allocator&lt;FourWins::GameLogic::ConnectFourFigure&gt; 
		&gt;
	&gt; 
&gt;&amp; 

slice_iter
&lt;
	__gnu_cxx::__normal_iterator
	&lt;
		const FourWins::GameLogic::ConnectFourFigure*, 
		std::vector
		&lt;
			FourWins::GameLogic::ConnectFourFigure, 
			std::allocator&lt;FourWins::GameLogic::ConnectFourFigure&gt; 
		&gt; 
	&gt; 
&gt;::operator=(const slice_iter
             &lt;
            	__gnu_cxx::__normal_iterator
             	&lt;
           		const FourWins::GameLogic::ConnectFourFigure*, 
            		std::vector
             		&lt;
            			FourWins::GameLogic::ConnectFourFigure, 
            			std::allocator&lt;FourWins::GameLogic::ConnectFourFigure&gt; 
            		&gt; 
            	&gt; 
            &gt;&amp;)
</code></pre>
<p>Man sieht direkt, also ich jedenfalls, der Zuweisungsoperator wurde nicht überladen bzw. wahrscheinlich implizit als deleted deklariert.</p>
<p>Edit: Weitere Abkürzungen wären:</p>
<ul>
<li>Die Parameterliste von <code>std::allocator</code> wird weggelassen.</li>
<li>ggf. Wird die komplette Parameterliste von <code>__gnu_cxx::__normal_iterator</code> und Konsorten weggelassen. Komplett. Die will auch keiner.</li>
</ul>
<p>Gibt es schon sowas ähnliches - sicher, oder?</p>
<p>MfG</p>
<p>Edit: Ich mach mich mal ran.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327753</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327753</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sat, 01 Jun 2013 10:28:31 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 10:34:51 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p>Gibt es schon sowas ähnliches - sicher, oder?</p>
</blockquote>
<p>Ja, STLFilt und Konsorten.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327756</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327756</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Sat, 01 Jun 2013 10:34:51 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 11:11:11 GMT]]></title><description><![CDATA[<p>SeppJ schrieb:</p>
<blockquote>
<p>Sone schrieb:</p>
<blockquote>
<p>Gibt es schon sowas ähnliches - sicher, oder?</p>
</blockquote>
<p>Ja, STLFilt und Konsorten.</p>
</blockquote>
<p>Und wo genau formatiert STLFilt &quot;nur&quot; irgendwas? Soweit ich sehe, ist es mehr oder weniger ein kompletter Compiler-Mod der sich auch noch beim Starten über ein fehlendes Python-Skript beschwert. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_down"
      title=":-1:"
      alt="👎"
    /><br />
Ich wollte nur ein kleines Programm, dass mir den Input formatiert ausgibt. Schon ein Online Teil würde es tun.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327762</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327762</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sat, 01 Jun 2013 11:11:11 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 11:32:40 GMT]]></title><description><![CDATA[<p>Sowas gibt's natürlich auch. Ich dachte die Information, dass es so etwas gibt, würde dir reichen, um diese Tools zu finden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327765</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327765</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Sat, 01 Jun 2013 11:32:40 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 11:48:40 GMT]]></title><description><![CDATA[<p>SeppJ schrieb:</p>
<blockquote>
<p>Ich dachte die Information, dass es so etwas gibt, würde dir reichen, um diese Tools zu finden.</p>
</blockquote>
<p>Aber die ersten Google-Treffer verweisen alle auf STLFilt. Ich bin Faul und du bist erfahren. Jetzt sag schon. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f921.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--clown_face"
      title=":clown:"
      alt="🤡"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327770</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327770</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sat, 01 Jun 2013 11:48:40 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 11:59:19 GMT]]></title><description><![CDATA[<p>Hier findest du mehrere Antworten, die nicht STLFilt sind:<br />
<a href="http://stackoverflow.com/questions/656420/is-there-any-way-to-get-readable-gcc-error-and-warning-output-at-the-command-lin" rel="nofollow">http://stackoverflow.com/questions/656420/is-there-any-way-to-get-readable-gcc-error-and-warning-output-at-the-command-lin</a></p>
<p>Ich kann nicht sagen, ob sie bei deiner IDE einbaubar sind, aber sie filtern die typischen GCC-Meldungen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327772</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327772</guid><dc:creator><![CDATA[SeppJ]]></dc:creator><pubDate>Sat, 01 Jun 2013 11:59:19 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 12:00:53 GMT]]></title><description><![CDATA[<p>Na gut, TextFilt sieht ganz gut aus.</p>
<p>Edit: Kein Scherz! Das fand' ich eine Minute vor deinem Post!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327773</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327773</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sat, 01 Jun 2013 12:00:53 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 13:51:19 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p>Man sieht direkt, also ich jedenfalls, der Zuweisungsoperator wurde nicht überladen bzw. wahrscheinlich implizit als deleted deklariert.</p>
</blockquote>
<p>Sieht man das nicht schon vorher?</p>
<blockquote>
<p>use of deleted function <em>blah</em></p>
</blockquote>
<p>reicht doch schon, um die Fehlermeldung zu verstehen.</p>
<p>Und der GCC gibt sogar die Zeilennummer der entsprechenden Funktion an, wer mehr Info will, springt halt dorthin (zumindest meine IDE kann das).</p>
<p>Wer versucht, die ganze Fehlermeldung durchzulesen und zu verstehen, der macht etwas falsch. Ich behaupte, die *Filt-Programme verleiten dazu und kosten einem schlussendlich nur noch mehr Zeit.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327795</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327795</guid><dc:creator><![CDATA[errorempathie]]></dc:creator><pubDate>Sat, 01 Jun 2013 13:51:19 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 13:53:51 GMT]]></title><description><![CDATA[<p>Nimm Clang. Der hat wunderschöne Fehlermeldungen!</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327796</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327796</guid><dc:creator><![CDATA[clangfan]]></dc:creator><pubDate>Sat, 01 Jun 2013 13:53:51 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 13:57:45 GMT]]></title><description><![CDATA[<p>errorempathie schrieb:</p>
<blockquote>
<p>Sone schrieb:</p>
<blockquote>
<p>Man sieht direkt, also ich jedenfalls, der Zuweisungsoperator wurde nicht überladen bzw. wahrscheinlich implizit als deleted deklariert.</p>
</blockquote>
<p>Sieht man das nicht schon vorher?</p>
<blockquote>
<p>use of deleted function <em>blah</em></p>
</blockquote>
<p>reicht doch schon, um die Fehlermeldung zu verstehen.</p>
</blockquote>
<p>Nö. Dann fragt man sich, welche. Und dann guck ich durch die ganze Fehlermeldung durch.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327799</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327799</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sat, 01 Jun 2013 13:57:45 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 13:59:48 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p>errorempathie schrieb:</p>
<blockquote>
<p>Sone schrieb:</p>
<blockquote>
<p>Man sieht direkt, also ich jedenfalls, der Zuweisungsoperator wurde nicht überladen bzw. wahrscheinlich implizit als deleted deklariert.</p>
</blockquote>
<p>Sieht man das nicht schon vorher?</p>
<blockquote>
<p>use of deleted function <em>blah</em></p>
</blockquote>
<p>reicht doch schon, um die Fehlermeldung zu verstehen.</p>
</blockquote>
<p>Nö. Dann fragt man sich, welche. Und dann guck ich durch die ganze Fehlermeldung durch.</p>
</blockquote>
<p>Oft kann man es aus dem Kontext erraten.<br />
Und sonst steht in der Fehlermeldung doch dabei, auf welcher Zeile die besagte Funktion ist. Klick -&gt; Schon ist man auf der Funktionsdefinition und sieht, um welche es sich handelt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327800</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327800</guid><dc:creator><![CDATA[errorempathie]]></dc:creator><pubDate>Sat, 01 Jun 2013 13:59:48 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 14:01:34 GMT]]></title><description><![CDATA[<p>clangfan schrieb:</p>
<blockquote>
<p>Nimm Clang. Der hat wunderschöne Fehlermeldungen!</p>
</blockquote>
<p>Nein, ich mag GCC. :p</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327801</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327801</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sat, 01 Jun 2013 14:01:34 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 19:01:32 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p>SeppJ schrieb:</p>
<blockquote>
<p>Sone schrieb:</p>
<blockquote>
<p>Gibt es schon sowas ähnliches - sicher, oder?</p>
</blockquote>
<p>Ja, STLFilt und Konsorten.</p>
</blockquote>
<p>Und wo genau formatiert STLFilt &quot;nur&quot; irgendwas? Soweit ich sehe, ist es mehr oder weniger ein kompletter Compiler-Mod der sich auch noch beim Starten über ein fehlendes Python-Skript beschwert. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f44e.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--thumbs_down"
      title=":-1:"
      alt="👎"
    /><br />
Ich wollte nur ein kleines Programm, dass mir den Input formatiert ausgibt. Schon ein Online Teil würde es tun.</p>
</blockquote>
<p>Du guckst nicht richtig.<br />
STLFilt filtert nur das was der Compiler ausgibt.<br />
Zur einfacheren Verwendung gibt's dann Proxy .exen die man verwenden kann um den Compiler aufzurufen und die zurückgegebenen Meldungen gleich schön formatiert ausgeben zu lassen. Der original Compiler wird dabei aber in keiner Weise verändert.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327865</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327865</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Sat, 01 Jun 2013 19:01:32 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Thu, 12 Jun 2014 00:07:29 GMT]]></title><description><![CDATA[<p>...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327882</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327882</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Thu, 12 Jun 2014 00:07:29 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 20:26:44 GMT]]></title><description><![CDATA[<p>Ich glaube, mein Haupt-Problem ist Code-Blocks, nicht GCC... <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /><br />
Das Panel, dass die Fehlermeldungen anzeigt, ist doof. Denke, der ein oder andere wird da zustimmen - die Fehlermeldungen sind alle nur in einer Zeile, erst im Build Log werden sie umgebrochen.</p>
<p>Aber ich bin zu Faul alle Libs auf VS umzukonfigurieren. Besides, die C++11-Unterstützung ist eine Scheiße - sind variadic templates eigentlich überhaupt möglich? <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>Hier mal ein Bild: <a href="http://s7.directupload.net/images/130601/kcawarxt.png" rel="nofollow">http://s7.directupload.net/images/130601/kcawarxt.png</a><br />
Und hier der Build-Log: <a href="http://s1.directupload.net/images/130601/ewjikfxt.png" rel="nofollow">http://s1.directupload.net/images/130601/ewjikfxt.png</a></p>
<p>Versteht mich <strong>jetzt</strong> jemand?</p>
<p>~Übrigens, Swordfish, <a href="http://www.c-plusplus.net/forum/298579-full" rel="nofollow">du bist erst ~26</a>? Also ist es für unsere Liebe noch nicht zu spät.~</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327889</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327889</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sat, 01 Jun 2013 20:26:44 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sat, 01 Jun 2013 20:29:32 GMT]]></title><description><![CDATA[<p>Swordfish schrieb:</p>
<blockquote>
<p>Sone schrieb:</p>
<blockquote>
<p>clangfan schrieb:</p>
<blockquote>
<p>Nimm Clang. Der hat wunderschöne Fehlermeldungen!</p>
</blockquote>
<p>Nein, ich mag GCC. :p</p>
</blockquote>
<p>gcc-concepts?</p>
</blockquote>
<p>Was ist das? Meinst du <a href="http://www.generic-programming.org/software/ConceptGCC/" rel="nofollow">ConceptGCC</a>? Ich denke nicht.</p>
<p>Ah, ich weiß. Es findet sich zwar nichts auf google, aber ich weiß genau was du meinst.<br />
Das hier ist der Anfangs-Codeausschnitt aus dem Funktionstemplate <code>std::search_n</code> .</p>
<pre><code>// concept requirements
      __glibcxx_function_requires(_ForwardIteratorConcept&lt;_ForwardIterator&gt;)
      __glibcxx_function_requires(_EqualOpConcept&lt;
	typename iterator_traits&lt;_ForwardIterator&gt;::value_type, _Tp&gt;)
</code></pre>
<p>Und was bringt mir das?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327892</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327892</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sat, 01 Jun 2013 20:29:32 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Thu, 12 Jun 2014 00:07:29 GMT]]></title><description><![CDATA[<p>...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327917</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327917</guid><dc:creator><![CDATA[Swordfish]]></dc:creator><pubDate>Thu, 12 Jun 2014 00:07:29 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sun, 02 Jun 2013 06:32:10 GMT]]></title><description><![CDATA[<p>Sone schrieb:</p>
<blockquote>
<p>clangfan schrieb:</p>
<blockquote>
<p>Nimm Clang. Der hat wunderschöne Fehlermeldungen!</p>
</blockquote>
<p>Nein, ich mag GCC. :p</p>
</blockquote>
<p>Solange du kein OpenMP verwendest, nimm Clang.</p>
<p>Ansonsten überlege ich mir, ob ich für meine Standard template parameter einfach ein sed script implementiere, das die langen Namn durch ihre typedefs im Code ersetzt. Viel besser als umformatieren.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327931</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327931</guid><dc:creator><![CDATA[otze]]></dc:creator><pubDate>Sun, 02 Jun 2013 06:32:10 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sun, 02 Jun 2013 08:16:17 GMT]]></title><description><![CDATA[<p>Ich höre so viel positives über Clang. Wenn ich jetzt mein Projekt mit Ogre3D habe, kann ich einfach den GCC 4.6.2 durch Clang ersetzen ? Ich glaube nicht.</p>
<p>Ich downloade es mir trotzdem. Und ich brauche endlich wieder ein neues Linux. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f603.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--grinning_face_with_big_eyes"
      title=":D"
      alt="😃"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327940</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327940</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sun, 02 Jun 2013 08:16:17 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sun, 02 Jun 2013 08:20:41 GMT]]></title><description><![CDATA[<blockquote>
<p>FourWins</p>
</blockquote>
<p>Nur so am Rande: &quot;Vier gewinnt&quot; nennt man auf englisch &quot;Connect Four&quot;.<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327942</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327942</guid><dc:creator><![CDATA[krümelkacker]]></dc:creator><pubDate>Sun, 02 Jun 2013 08:20:41 GMT</pubDate></item><item><title><![CDATA[Reply to Automatische Fehlermeldungs-Formatierung bei Templates on Sun, 02 Jun 2013 08:33:29 GMT]]></title><description><![CDATA[<p>krümelkacker schrieb:</p>
<blockquote>
<blockquote>
<p>FourWins</p>
</blockquote>
<p>Nur so am Rande: &quot;Vier gewinnt&quot; nennt man auf englisch &quot;Connect Four&quot;.<br />
<img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
</blockquote>
<p>Mist, aber ich dachte das wäre <a href="https://en.wikipedia.org/wiki/Connect_Four" rel="nofollow">hier</a>...<br />
Egal. Schnell Replace anwenden.<br />
Fertig.</p>
<p>Ja, Concepts sind nice. Die kannte ich übrigens schon vorher, nur um das mal klar zu stellen - mir war jetzt nicht klar - gcc concepts?<br />
Aber ich will keinen Mod, ich entwickle doch größtenteils auf Windows. Und ich will nicht selber GCC kompilieren.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2327944</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2327944</guid><dc:creator><![CDATA[Sone]]></dc:creator><pubDate>Sun, 02 Jun 2013 08:33:29 GMT</pubDate></item></channel></rss>