User xtofl - Stack Overflow most recent 30 from stackoverflow.com 2009-11-28T12:46:43Z http://stackoverflow.com/feeds/user/6610 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1811456/calling-a-function-from-a-string-with-the-functions-name-in-c/1812054#1812054 0 Answer by xtofl for Calling a Function From a String With the Function’s Name in C++ xtofl 2009-11-28T09:09:53Z 2009-11-28T09:09:53Z <p>You could wrap your function declarations into an interpreted language (like Lua or Perl or Python <a href="http://www.boostpro.com/writing/bpl.html" rel="nofollow">(boost has some nice framework for that)</a> ). Then use that language to call your code 'by string'.</p> <p>These languages/wrappers are built to do such things. C++ isn't, so you will put a lot of effort in adding support for it.</p> http://stackoverflow.com/questions/1811788/c-how-to-perform-deep-cloning-of-generic-type/1812017#1812017 1 Answer by xtofl for C++: How to Perform Deep Cloning of Generic Type xtofl 2009-11-28T08:52:20Z 2009-11-28T09:03:30Z <p>First and for all: if you want to clone any object, all it's aggregates should be cloned, too. This means that every struct/class involved in the cloning action should implement cloning behavior.</p> <p>Then: the <code>stl</code> uses so called value-semantics: containers will always contain their elements 'by value'. Copying means creating copies of all container elements.</p> <p>So in order to achieve cloning/deep copy behavior, the copy constructors of every member of the container's element type should implement deep copy behavior. Members of pointer-to-object type should also be deep-copied (not just copying the member pointer).</p> <p>Note: code is untested, probably contains tons of exception-unsafety etc... and is merely used as a shallow :) example.</p> <pre><code>struct WithPointer { int* pint; WithPointer( int value = 0 ) : pint( new int ) { *pint = value; } WithPointer( const WithPointer&amp; other ) { pint = new int; *pint = *other.pint; } ~WithPointer( ) { delete pint; } // important! } </code></pre> <p>This class can be 'deep-copied' using an stl container:</p> <pre><code>std::vector&lt;WithPointer&gt; v; WithPointer wp(1); v.push_back( wp ); std::vector&lt;WithPointer&gt; v2 = v; </code></pre> http://stackoverflow.com/questions/1811830/software-and-bio-mimicry/1811930#1811930 2 Answer by xtofl for Software and Bio-Mimicry xtofl 2009-11-28T07:58:40Z 2009-11-28T07:58:40Z <p>Most of the answers yet talk about AI. The title of your question hints towards software that hides itself in order not to be detected.</p> <p>We got viruses.</p> <p>We got virus-hunters...</p> <p>Me myself, I even hid some bugs in my own programs ... :(</p> http://stackoverflow.com/questions/1809227/how-to-get-the-first-n-elements-of-a-stdmap/1809259#1809259 7 Answer by xtofl for How to get the first n elements of a std::map xtofl 2009-11-27T15:03:55Z 2009-11-27T15:03:55Z <p>You can use <code>std::advance( iter, numberofsteps )</code> for that.</p> http://stackoverflow.com/questions/1808262/printing-a-ul-from-an-array-of-images/1808284#1808284 0 Answer by xtofl for printing a UL from an array of images xtofl 2009-11-27T11:47:41Z 2009-11-27T11:47:41Z <pre><code>&lt;h1&gt;&lt;?=htmlspecialchars($project['title'])?&gt;&lt;/h1&gt; </code></pre> <p>Is <code>&lt;?</code> a valid PHP opening tag?</p> <p>Since your last block of PHP code isn't apparently executed (since it would either print an empty <code>ul</code> or the text from the <code>else</code> block) I suspect the PHP doesn't get parsed correctly.</p> http://stackoverflow.com/questions/1788550/should-the-conditional-operator-evaluate-all-arguments 6 Should the conditional operator evaluate all arguments? xtofl 2009-11-24T08:00:52Z 2009-11-27T10:09:26Z <p>When writing this: </p> <pre><code>1: inline double f( double arg ) { 2: return arg == 0.0 ? 0.0 : 1./arg; 3: } 4: const double d = f( 0.0 ); </code></pre> <p>The microsoft visual studio 2005 64-bit compiler came with</p> <pre><code>line 4: warning C4723: potential divide by 0 </code></pre> <p>While you and I can clearly see that a div-by-zero is <em>never</em> going to happen... </p> <p>Or is it?</p> http://stackoverflow.com/questions/1802204/i-can-not-get-access-to-pointer-to-member-why/1802453#1802453 0 Answer by xtofl for I can not get access to pointer to member. Why? xtofl 2009-11-26T09:05:42Z 2009-11-26T09:12:20Z <p>I stumbled upon the same problem. The support for pointer-to-member template arguments is still limited in VC++ (see <a href="http://support.microsoft.com/kb/249045" rel="nofollow">bug report</a>).</p> <p>In my case I could work around it by using a template function i.s.o. a template class:</p> <pre><code>template&lt; typename Class &gt; struct CMemberDumper { Class&amp; object; template&lt; typename M &gt; void visit_member( M C::*pm ) { std::cout &lt;&lt; object.*pm; } }; </code></pre> http://stackoverflow.com/questions/1687151/visual-studio-2008-debug-window-to-display-timestamp/1795891#1795891 0 Answer by xtofl for Visual Studio 2008 Debug Window to display timestamp? xtofl 2009-11-25T10:04:30Z 2009-11-25T10:04:30Z <p>I was looking for the same functionality. Colleague of mine came up with the <code>$TICK</code> macro in the message field, printing out the 'current' cpu ticks.</p> <p>Take a look at <a href="http://simonchapman.blogspot.com/2006/11/visual-studio-2005-and-tracepoints.html" rel="nofollow">these tips from Simon Chapman</a>, too.</p> http://stackoverflow.com/questions/1789438/c-inheritance-problem/1789536#1789536 4 Answer by xtofl for C++ inheritance problem xtofl 2009-11-24T11:39:42Z 2009-11-24T11:39:42Z <p>You can use a virtual override in your <code>DerivedClass</code> class returning a subtype of the <code>ParentClass</code> return type...</p> <pre><code>struct ParentClass { virtual ParentObj* get( const size_t index ) { return m_objects[index]; } }; struct DerivedClass : public ParentClass { virtual DerivedObj* get( const size_t index ) { return dynamic_cast&lt;DerivedObj*&gt;( ParentClass::get(index) ); } }; </code></pre> <p>Both functions are the same 'vtable' entry, though their return type differs.</p> <p>Alternatively, you may use the same technique to create 'inherited' iterators.</p> <p>Next to that, it's not a bad idea to have a vector of <code>DerivedObj*</code>'s in the <code>DerivedClass</code> object, as long as you guarantee that they are also present in the <code>ParentClass</code>'s vector.</p> http://stackoverflow.com/questions/1782658/parse-string-containing-range-of-values-to-min-and-max-variables-v2/1782844#1782844 5 Answer by xtofl for Parse string containing range of values to min and max variables v2 xtofl 2009-11-23T12:24:44Z 2009-11-23T13:31:49Z <p>When encountering such a problem, you can try expressing it in some kind of Backus-Naur form:</p> <pre><code>Range := Number | Number "-" Number Number := Sign Digits Sign := "" | "-" Digits := Digit* | Digit* "." Digit* </code></pre> <p>And create a regular expression from that.</p> http://stackoverflow.com/questions/1768294/how-to-allocate-a-2d-array-of-pointers-in-c/1768695#1768695 0 Answer by xtofl for how to allocate a 2D array of pointers in c++ xtofl 2009-11-20T06:27:33Z 2009-11-20T06:27:33Z <p>:)</p> <p>I had these once in a piece of code I wrote.</p> <p>I was the laughing stock of the team when the first bugs leaked out. On top of that we use Hungarian notation, leading to a name like <code>papChannel</code> - a pointer to an array of pointers...</p> <p>It's not nice. It's nicer to use typedefs to define a 'row of columns' or vice versa. Makes indexing more clear, too.</p> <pre><code>typedef int Cell; typedef Cell Row[30]; typedef Row Table[20]; Table * pTable = new Table; for( Row* pRow = *pTable; pRow != *pTable+_countof(*pTable); ++pRow ) { for( Cell* pCell = *pRow; pCell != *pRow + _countof(*pRow); ++pCell ) { ... do something with cells. } } </code></pre> http://stackoverflow.com/questions/1613041/embedded-console-tools-functionality-in-application/1766132#1766132 2 Answer by xtofl for Embedded console tools functionality in application xtofl 2009-11-19T19:59:22Z 2009-11-19T19:59:22Z <p>The 'ancient' tools were built for use by the shell, not to be built/linked into an executable. There are, however, more recent tools that kinda do lot of what you showed on your command line preprocessor: iostreams with extractors (to replace <code>cut</code>), <code>std::sort</code> and <code>std::unique</code> to replace the respective programs...</p> <pre><code>struct S { string col1, col3; bool operator&lt;( const S&amp; s ) { return col1 &lt; s.col1; } }; vector&lt;S&gt; v; while( cin ) { S s; string dummy; cin &gt;&gt; s.col1 &gt;&gt; dummy &gt;&gt; col3 &gt;&gt; dummy; v.push_back( s ); } sort(v.begin(), v.end(), S::smaller ); unique( v.begin(), v.end() ); </code></pre> <p>Not too complicated, I think.</p> http://stackoverflow.com/questions/1765539/declaring-functors-for-comparison/1766019#1766019 2 Answer by xtofl for Declaring functors for comparison ?? xtofl 2009-11-19T19:44:43Z 2009-11-19T19:44:43Z <p>And a third one comes in... After you edited you question, still one open topic: your comparator takes a <code>const &amp;</code> to the <code>GameEntity</code> class. It should, in order to work with the values of the <code>vector&lt;GameEntity*&gt;</code>, take <code>const GameEntity*</code> arguments instead.</p> http://stackoverflow.com/questions/1765539/declaring-functors-for-comparison/1765862#1765862 1 Answer by xtofl for Declaring functors for comparison ?? xtofl 2009-11-19T19:21:38Z 2009-11-19T19:21:38Z <p>In the light of 'what you're trying to achieve', I may do another guess... You want to be able to specify whether to compare your objects by their <code>GameEntity::x</code> member, or by their <code>GameEntity::y</code> member.</p> <p>The easiest way would be to, as you did, specify a functor for each member:</p> <pre><code>struct CompareX { bool operator()( const GameEntity&amp; a, const GameEntity&amp; b ) const { return a.x &lt; b.x; } }; struct CompareY { bool operator()( const GameEntity&amp; a, const GameEntity&amp; b ) const { return a.y &lt; b.y; } }; CompareX compx; // create a compare object std::sort( v.begin(), v.end(), compx ); </code></pre> <p>The 'flexible' yet more cumbersome way would be to create a template functor:</p> <pre><code>#include &lt;iostream&gt; using namespace std; // a mockup of your class struct GameEntity { float x, y, z; }; // just to be able to print it... ostream&amp; operator&lt;&lt;( ostream&amp; o, const GameEntity&amp; g ) { return o &lt;&lt; "(" &lt;&lt; g.x &lt;&lt; ", " &lt;&lt; g.y &lt;&lt; ", " &lt;&lt; g.z &lt;&lt; ")"; } // cumbersome starts here... typedef float (GameEntity::*membervar); // a 'generic' float-member comparator template&lt; membervar m &gt; struct CompareBy { bool operator()( const GameEntity&amp; a, const GameEntity&amp; b ) const { return a.*m &lt; b.*m ; } }; // example code int main() { using namespace std; GameEntity v[] = { {1,0,0}, {2,0,1}, {3,-1,2} }; GameEntity* vend = v + sizeof(v)/sizeof(v[0]); sort( v, vend, CompareBy&lt; &amp;GameEntity::x &gt;() ); copy( v, vend, ostream_iterator&lt;GameEntity&gt;( cout, "\n" ) ); } </code></pre> http://stackoverflow.com/questions/1765539/declaring-functors-for-comparison/1765590#1765590 1 Answer by xtofl for Declaring functors for comparison ?? xtofl 2009-11-19T18:39:24Z 2009-11-19T18:39:24Z <p>I did see this question, recently, though....</p> <p>The answer was something in the way of: the function provided to <code>sort</code> should not be a member-function of something. Meaning: it should be a static function, or a free function. In case you declare it a static function, you should still precede it by <code>Entity::compareByX</code> in order to name it correctly.</p> <p>If you define the order in the class itself, you can, as aJ already said, use a function adapter <code>mem_fun</code> or <code>mem_fun_ref</code> to pour it into a 'free' functor object.</p> <p>If you want an <code>Entity</code> object to do the comparison, you should provide <code>sort</code> with an object (called a functor or comparator in this case):</p> <pre><code>struct EntityComp { bool operator()( const GameEntity&amp; a, const GameEntity&amp; b ) const { return a.x &lt; b.x; } } ... std::sort( v.begin(), v.end(), EntityComp() ); </code></pre> http://stackoverflow.com/questions/1762566/badalloc-exception-when-trying-to-print-the-values/1762658#1762658 0 Answer by xtofl for bad_alloc exception when trying to print the values xtofl 2009-11-19T11:28:54Z 2009-11-19T11:28:54Z <p>How much is <code>n</code>? That's where the amount of surfacePoints is calculated by...</p> http://stackoverflow.com/questions/1762390/how-to-explain-c-templates-to-junior-developers/1762486#1762486 0 Answer by xtofl for How to explain C++ templates to junior developers? xtofl 2009-11-19T10:54:01Z 2009-11-19T10:54:01Z <p>I found it very instructive to look at duck-typed languages. It doesn't matter, there, what type of argument you give a function, as long as they offer the right interface.</p> <p>Templates allows to do the same thing: you can take any type, as long as the right interface is present. The additional benefit over duck-typing is, that the interface is checked at compile-time.</p> http://stackoverflow.com/questions/1751346/interpret-signed-as-unsigned/1751381#1751381 2 Answer by xtofl for interpret signed as unsigned xtofl 2009-11-17T20:01:59Z 2009-11-17T20:06:59Z <p>You can also <code>reinterpret_cast</code> it, or use a <code>union</code>:</p> <pre><code>union { int64_t i64; uint64_t ui64; } variable; variable.i64 = SOME_SIGNED_VALUE; uint64_t a_copy = variable.ui64; </code></pre> http://stackoverflow.com/questions/1748856/inconsistent-results-from-printf-with-long-long-int/1748879#1748879 9 Answer by xtofl for Inconsistent results from printf with long long int? xtofl 2009-11-17T13:29:21Z 2009-11-17T14:21:51Z <p>The <code>%d</code> argument tells <code>printf</code> to <em>interpret</em> the corresponding argument as an <code>int</code>. Try using <code>%llu</code> for <code>long long</code>. And memorize this <a href="http://www.pixelbeat.org/programming/gcc/format%5Fspecs.html" rel="nofollow">reference card</a>.</p> <p>(So no, it's not a bug)</p> http://stackoverflow.com/questions/1748242/is-there-a-difference-between-using-this-and-prototype-in-javascript-here/1748274#1748274 0 Answer by xtofl for Is there a difference between using "this" and "prototype" in Javascript here? xtofl 2009-11-17T11:39:53Z 2009-11-17T11:39:53Z <p>Functionally, this is the same. The latter, however, emphasizes similarities between <code>Agent</code> objects. You can see in a glimpse that these members have that value, while in a more complicated constructor function, with lots of conditionals, it's harder.</p> <p>It also allows the javascript runtime to choose how it handles <code>Agent</code> member initializations. (do some precompilation, ...)</p> http://stackoverflow.com/questions/1741591/error-while-reading-files-with-native-code-on-windows-mobile/1741734#1741734 0 Answer by xtofl for Error while reading files with native code on windows mobile xtofl 2009-11-16T11:54:33Z 2009-11-16T11:54:33Z <p>A hint: use the <a href="http://technet.microsoft.com/en-us/sysinternals/bb896645.aspx" rel="nofollow">Process Monitor</a> tool to see what goes wrong in the file system calls.</p> <p>The path accepted by <code>wifstream</code> is lacking a drive ("C:" or the like) (I don't know what the <code>ruta</code> variable points to)</p> <p>Apart from the streams problem itself, you can save yourself a lot of trouble by using the <a href="http://msdn.microsoft.com/en-us/library/ms724366%28VS.85%29.aspx" rel="nofollow"><code>GetProfileString</code></a> and related functions, when using a windows .ini file.</p> http://stackoverflow.com/questions/1740915/is-it-possible-to-compile-both-32-bit-and-64-bit-configurations-without-restartin/1740941#1740941 0 Answer by xtofl for Is it possible to compile both 32-bit and 64-bit configurations without restarting Visual Studio? xtofl 2009-11-16T09:04:58Z 2009-11-16T09:04:58Z <p>There is always the Build->Batch Build command, in which you can select the configurations to build.</p> http://stackoverflow.com/questions/1727291/where-do-i-get-sample-code-in-c-creating-iterator-for-my-own-container/1731040#1731040 1 Answer by xtofl for Where do I get sample code in C++ creating iterator for my own container? xtofl 2009-11-13T18:33:04Z 2009-11-13T18:33:04Z <p>I found <a href="http://synesis.com.au/publishing/xstl/" rel="nofollow">Matthew Wilson's 'extended STL'</a> <em>very</em> educative on the subject. Contains lots of do's and don'ts, plus tons of practical programming tips. I think this guy really knows what he's doing. (created libraries for that, too)</p> http://stackoverflow.com/questions/1727240/preventing-data-from-being-freed-when-vector-goes-out-of-scope/1729664#1729664 4 Answer by xtofl for preventing data from being freed when vector goes out of scope xtofl 2009-11-13T14:47:12Z 2009-11-13T14:47:12Z <p>A simple workaround would be swapping the vector with one you own:</p> <pre><code>vector&lt;double&gt; myown; vector&lt;double&gt; someoneelses = foo(); std::swap( myown, someoneelses ); </code></pre> <p>A tougher but maybe better approach is write your own allocator for the vector, and let it allocate out of a pool you maintain. No personal experience, but it's not too complicated.</p> http://stackoverflow.com/questions/1728864/dna-strings-sorting-function-problem/1728930#1728930 1 Answer by xtofl for DNA strings sorting function problem xtofl 2009-11-13T12:27:55Z 2009-11-13T12:27:55Z <p>You need to define "sortedness", i.e., from the definition in the mentioned page: the number of pairs out of order.</p> <p>Functionally written that would be</p> <pre><code>unsortedness( {} ) = 0 unsortedness( a1, a2, ... an ) = count( smaller_then( a1 ), {a2,a3,...,an} ) + unsortedness( {a2,a3,...,an} ) </code></pre> <p>If you can pour that in C++ syntax, you're done. Hint: there is a standard function <a href="http://www.cplusplus.com/reference/algorithm/count%5Fif/" rel="nofollow"><code>std::count_if( begin, end, comparator )</code></a>, in which you can use <a href="http://www.cplusplus.com/reference/std/functional/bind2nd/" rel="nofollow"><code>std::bind2nd( std::less&lt;char&gt;(), a1 )</code></a> as comparator.</p> http://stackoverflow.com/questions/1723080/should-we-validate-method-arguments-in-javascript-apis/1723125#1723125 3 Answer by xtofl for Should we validate method arguments in JavaScript API's? xtofl 2009-11-12T15:38:03Z 2009-11-12T15:38:03Z <p>You have the right to decide whether to make a "defensive" vs. a "contractual" API. In many cases, reading the manual of a library can make it clear to it's user that he should provide arguments of this or that type that obey these and those constraints.</p> <p>If you intend to make a very intuitive, user friendly, API, it would be nice to validate your arguments, at least in debug mode. However, validation costs time (and source code => space), so it may also be nice to leave it out.</p> <p>It's up to you.</p> http://stackoverflow.com/questions/1710263/sharedptr-with-templates/1710302#1710302 4 Answer by xtofl for shared_ptr with templates xtofl 2009-11-10T18:52:50Z 2009-11-12T15:33:32Z <p>That would be</p> <pre><code>typedef shared_ptr&lt; B&lt;char&gt; &gt; B_Ptr; B_Ptr p( new B&lt;char&gt; ); p-&gt;value = 'w'; </code></pre> http://stackoverflow.com/questions/1721862/dos-and-donts-while-using-pointers/1722103#1722103 0 Answer by xtofl for DO's and Donts while using pointers xtofl 2009-11-12T13:14:39Z 2009-11-12T13:14:39Z <p>The ownership question is often the hardest one: your <em>design</em> should already decide on that. The one <em>owning</em> the object should be responsible for destroying it.</p> <p>But I've seen scenario's where destructed objects were still referred to, too - aka dangling pointers. Your design should take the "validity" into account, too. Every reference to a deleted object should be noticeably invalid. If I'm not mistaken, the <code>weak_ptr</code> class can postpone this decision.</p> http://stackoverflow.com/questions/1720896/c-nested-macros/1720945#1720945 0 Answer by xtofl for C++ nested macros? xtofl 2009-11-12T09:15:24Z 2009-11-12T10:16:35Z <p>"Static members are physical variables".</p> <p>What's against this? The only reason to object to this would be memory usage. But since the member is static, the memory would only be occupied once with the intended content. </p> <p>On the contrary, with a macro, the contend would be present <em>at every single usage location</em> in the binary.</p> <p>EDIT: In case the variable is of an integral type, smaller than a pointer, it's probably best to define the constant in the class declaration. Optimizing compilers can then inline the value in the calling code, just like for a macro.</p> http://stackoverflow.com/questions/1710005/abstractions-should-not-depend-upon-details-details-should-depend-upon-abstracti/1710058#1710058 1 Answer by xtofl for Abstractions should not depend upon details. Details should depend upon abstractions ? xtofl 2009-11-10T18:16:41Z 2009-11-10T18:16:41Z <p>Example of the abstraction and the details: a stream provides an interface to read a token. That's an abstraction.</p> <p>A stream implementation of the stream is bound to implement the interface defined by the abstraction: that's why it depends on it. If it provides a different interface (one to read 100 characters at a time) it cannot claim to implement the same abstraction.</p> http://stackoverflow.com/questions/1808262/printing-a-ul-from-an-array-of-images/1808284#1808284 Comment by xtofl on printing a UL from an array of images xtofl 2009-11-27T11:54:34Z 2009-11-27T11:54:34Z the Short Opening Tag <code>&lt;?</code> is only allowed when <code>short&#95;open&#95;tag</code> is 1. You could check this by printing something after the <code>&lt;h1&gt;</code> block. http://stackoverflow.com/questions/1807334/js-how-to-prevent-the-default-action-on-images-in-browsers Comment by xtofl on JS: How to prevent the default action on images in browsers? xtofl 2009-11-27T08:15:43Z 2009-11-27T08:15:43Z respect: <i>do</i> learn about browser headackes/hacks! But you'll save yourself a lot of time using the tested knowledge of others about that -i.e. javascript frameworks. http://stackoverflow.com/questions/1788550/should-the-conditional-operator-evaluate-all-arguments/1804259#1804259 Comment by xtofl on Should the conditional operator evaluate all arguments? xtofl 2009-11-26T19:02:13Z 2009-11-26T19:02:13Z That's solid reasoning. I can live with that -especially since it proves my gut feeling. http://stackoverflow.com/questions/1803281/pointer-for-item-in-iteration-over-stdlist/1803290#1803290 Comment by xtofl on Pointer for item in iteration over std::list xtofl 2009-11-26T12:05:47Z 2009-11-26T12:05:47Z Probably because he's unaware he's copying it... http://stackoverflow.com/questions/1803281/pointer-for-item-in-iteration-over-stdlist/1803294#1803294 Comment by xtofl on Pointer for item in iteration over std::list xtofl 2009-11-26T12:05:05Z 2009-11-26T12:05:05Z Or use <code>Target&amp; t = &#42;iter;</code>. http://stackoverflow.com/questions/1802204/i-can-not-get-access-to-pointer-to-member-why/1802365#1802365 Comment by xtofl on I can not get access to pointer to member. Why? xtofl 2009-11-26T09:14:43Z 2009-11-26T09:14:43Z Found the bug report: <a href="http://support.microsoft.com/kb/249045" rel="nofollow">support.microsoft.com/kb/249045</a>. Applies to VC6.0, they say... http://stackoverflow.com/questions/1802204/i-can-not-get-access-to-pointer-to-member-why/1802365#1802365 Comment by xtofl on I can not get access to pointer to member. Why? xtofl 2009-11-26T08:54:05Z 2009-11-26T08:54:05Z Doesn't the <code>&amp;</code> sign show that it's a _pointer_-to-member, then? http://stackoverflow.com/questions/1802204/i-can-not-get-access-to-pointer-to-member-why/1802358#1802358 Comment by xtofl on I can not get access to pointer to member. Why? xtofl 2009-11-26T08:52:50Z 2009-11-26T08:52:50Z It's legal syntax. In Comeau, this compiles. -1 http://stackoverflow.com/questions/1802204/i-can-not-get-access-to-pointer-to-member-why/1802365#1802365 Comment by xtofl on I can not get access to pointer to member. Why? xtofl 2009-11-26T08:50:42Z 2009-11-26T08:50:42Z However, the compiler doesn't need to know the <i>size</i>, imho. http://stackoverflow.com/questions/1802204/i-can-not-get-access-to-pointer-to-member-why/1802365#1802365 Comment by xtofl on I can not get access to pointer to member. Why? xtofl 2009-11-26T08:50:10Z 2009-11-26T08:50:10Z I coincide with the 'bug' theory. I stumbled upon the same problem lately, and found - but don't remember where - that they didn't yet 'fully support' pointer-to-member template class arguments. http://stackoverflow.com/questions/1797777/should-i-support-unicode-in-passwords/1797798#1797798 Comment by xtofl on Should I support Unicode in passwords? xtofl 2009-11-25T16:06:37Z 2009-11-25T16:06:37Z Although the French/Belgian AZERTY keyboard users have a huge problem finding back the 'common' symbols on a QWERTY... Which would then lead to supporting only letters and digits (for the user's sake), if you follow the same rationale. http://stackoverflow.com/questions/1789438/c-inheritance-problem Comment by xtofl on C++ inheritance problem xtofl 2009-11-24T13:55:23Z 2009-11-24T13:55:23Z @fmuecke: you have to treat pointers as pointers, coping properly with ownership issues, and differentiate between 'copying' and 'cloning'. (or shallow vs. deep copy). http://stackoverflow.com/questions/1789633/compare-tchar-and-char/1789683#1789683 Comment by xtofl on compare tchar[] and char[] xtofl 2009-11-24T12:13:19Z 2009-11-24T12:13:19Z It's acceptable to convert <code>CHAR</code> to <code>TCHAR</code>. http://stackoverflow.com/questions/1788550/should-the-conditional-operator-evaluate-all-arguments/1788851#1788851 Comment by xtofl on Should the conditional operator evaluate all arguments? xtofl 2009-11-24T09:31:28Z 2009-11-24T09:31:28Z That makes sense. Thanks. http://stackoverflow.com/questions/1788357/algorithm-for-vector-problem Comment by xtofl on Algorithm for vector problem xtofl 2009-11-24T08:55:26Z 2009-11-24T08:55:26Z and dont <code>const short &amp;generation</code>: on a 64bit system, the pointer is 4 times bigger than the argument...