User xtofl - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T12:46:43Zhttp://stackoverflow.com/feeds/user/6610http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1811456/calling-a-function-from-a-string-with-the-functions-name-in-c/1812054#18120540Answer by xtofl for Calling a Function From a String With the Function’s Name in C++xtofl2009-11-28T09:09:53Z2009-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#18120171Answer by xtofl for C++: How to Perform Deep Cloning of Generic Typextofl2009-11-28T08:52:20Z2009-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& 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<WithPointer> v;
WithPointer wp(1);
v.push_back( wp );
std::vector<WithPointer> v2 = v;
</code></pre>
http://stackoverflow.com/questions/1811830/software-and-bio-mimicry/1811930#18119302Answer by xtofl for Software and Bio-Mimicryxtofl2009-11-28T07:58:40Z2009-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#18092597Answer by xtofl for How to get the first n elements of a std::mapxtofl2009-11-27T15:03:55Z2009-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#18082840Answer by xtofl for printing a UL from an array of imagesxtofl2009-11-27T11:47:41Z2009-11-27T11:47:41Z<pre><code><h1><?=htmlspecialchars($project['title'])?></h1>
</code></pre>
<p>Is <code><?</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-arguments6Should the conditional operator evaluate all arguments?xtofl2009-11-24T08:00:52Z2009-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#18024530Answer by xtofl for I can not get access to pointer to member. Why?xtofl2009-11-26T09:05:42Z2009-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< typename Class > struct CMemberDumper {
Class& object;
template< typename M > void visit_member( M C::*pm ) {
std::cout << object.*pm;
}
};
</code></pre>
http://stackoverflow.com/questions/1687151/visual-studio-2008-debug-window-to-display-timestamp/1795891#17958910Answer by xtofl for Visual Studio 2008 Debug Window to display timestamp?xtofl2009-11-25T10:04:30Z2009-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#17895364Answer by xtofl for C++ inheritance problemxtofl2009-11-24T11:39:42Z2009-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<DerivedObj*>( 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#17828445Answer by xtofl for Parse string containing range of values to min and max variables v2xtofl2009-11-23T12:24:44Z2009-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#17686950Answer by xtofl for how to allocate a 2D array of pointers in c++xtofl2009-11-20T06:27:33Z2009-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#17661322Answer by xtofl for Embedded console tools functionality in applicationxtofl2009-11-19T19:59:22Z2009-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<( const S& s ) { return col1 < s.col1; }
};
vector<S> v;
while( cin ) {
S s;
string dummy;
cin >> s.col1 >> dummy >> col3 >> 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#17660192Answer by xtofl for Declaring functors for comparison ??xtofl2009-11-19T19:44:43Z2009-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 &</code> to the <code>GameEntity</code> class. It should, in order to work with the values of the <code>vector<GameEntity*></code>, take <code>const GameEntity*</code> arguments instead.</p>
http://stackoverflow.com/questions/1765539/declaring-functors-for-comparison/1765862#17658621Answer by xtofl for Declaring functors for comparison ??xtofl2009-11-19T19:21:38Z2009-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& a, const GameEntity& b ) const {
return a.x < b.x;
}
};
struct CompareY {
bool operator()( const GameEntity& a, const GameEntity& b ) const {
return a.y < 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 <iostream>
using namespace std;
// a mockup of your class
struct GameEntity { float x, y, z; };
// just to be able to print it...
ostream& operator<<( ostream& o, const GameEntity& g ) {
return o << "(" << g.x << ", " << g.y << ", " << g.z << ")";
}
// cumbersome starts here...
typedef float (GameEntity::*membervar);
// a 'generic' float-member comparator
template< membervar m > struct CompareBy {
bool operator()( const GameEntity& a, const GameEntity& b ) const {
return a.*m < 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< &GameEntity::x >() );
copy( v, vend, ostream_iterator<GameEntity>( cout, "\n" ) );
}
</code></pre>
http://stackoverflow.com/questions/1765539/declaring-functors-for-comparison/1765590#17655901Answer by xtofl for Declaring functors for comparison ??xtofl2009-11-19T18:39:24Z2009-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& a, const GameEntity& b ) const {
return a.x < 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#17626580Answer by xtofl for bad_alloc exception when trying to print the valuesxtofl2009-11-19T11:28:54Z2009-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#17624860Answer by xtofl for How to explain C++ templates to junior developers?xtofl2009-11-19T10:54:01Z2009-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#17513812Answer by xtofl for interpret signed as unsignedxtofl2009-11-17T20:01:59Z2009-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#17488799Answer by xtofl for Inconsistent results from printf with long long int?xtofl2009-11-17T13:29:21Z2009-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#17482740Answer by xtofl for Is there a difference between using "this" and "prototype" in Javascript here?xtofl2009-11-17T11:39:53Z2009-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#17417340Answer by xtofl for Error while reading files with native code on windows mobilextofl2009-11-16T11:54:33Z2009-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#17409410Answer by xtofl for Is it possible to compile both 32-bit and 64-bit configurations without restarting Visual Studio?xtofl2009-11-16T09:04:58Z2009-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#17310401Answer by xtofl for Where do I get sample code in C++ creating iterator for my own container?xtofl2009-11-13T18:33:04Z2009-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#17296644Answer by xtofl for preventing data from being freed when vector goes out of scopextofl2009-11-13T14:47:12Z2009-11-13T14:47:12Z<p>A simple workaround would be swapping the vector with one you own:</p>
<pre><code>vector<double> myown;
vector<double> 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#17289301Answer by xtofl for DNA strings sorting function problemxtofl2009-11-13T12:27:55Z2009-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<char>(), a1 )</code></a> as comparator.</p>
http://stackoverflow.com/questions/1723080/should-we-validate-method-arguments-in-javascript-apis/1723125#17231253Answer by xtofl for Should we validate method arguments in JavaScript API's?xtofl2009-11-12T15:38:03Z2009-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#17103024Answer by xtofl for shared_ptr with templatesxtofl2009-11-10T18:52:50Z2009-11-12T15:33:32Z<p>That would be</p>
<pre><code>typedef shared_ptr< B<char> > B_Ptr;
B_Ptr p( new B<char> );
p->value = 'w';
</code></pre>
http://stackoverflow.com/questions/1721862/dos-and-donts-while-using-pointers/1722103#17221030Answer by xtofl for DO's and Donts while using pointersxtofl2009-11-12T13:14:39Z2009-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#17209450Answer by xtofl for C++ nested macros?xtofl2009-11-12T09:15:24Z2009-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#17100581Answer by xtofl for Abstractions should not depend upon details. Details should depend upon abstractions ?xtofl2009-11-10T18:16:41Z2009-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#1808284Comment by xtofl on printing a UL from an array of imagesxtofl2009-11-27T11:54:34Z2009-11-27T11:54:34Zthe Short Opening Tag <code><?</code> is only allowed when <code>short_open_tag</code> is 1. You could check this by printing something after the <code><h1></code> block.http://stackoverflow.com/questions/1807334/js-how-to-prevent-the-default-action-on-images-in-browsersComment by xtofl on JS: How to prevent the default action on images in browsers?xtofl2009-11-27T08:15:43Z2009-11-27T08:15:43Zrespect: <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#1804259Comment by xtofl on Should the conditional operator evaluate all arguments?xtofl2009-11-26T19:02:13Z2009-11-26T19:02:13ZThat'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#1803290Comment by xtofl on Pointer for item in iteration over std::listxtofl2009-11-26T12:05:47Z2009-11-26T12:05:47ZProbably because he's unaware he's copying it...http://stackoverflow.com/questions/1803281/pointer-for-item-in-iteration-over-stdlist/1803294#1803294Comment by xtofl on Pointer for item in iteration over std::listxtofl2009-11-26T12:05:05Z2009-11-26T12:05:05ZOr use <code>Target& t = *iter;</code>.http://stackoverflow.com/questions/1802204/i-can-not-get-access-to-pointer-to-member-why/1802365#1802365Comment by xtofl on I can not get access to pointer to member. Why?xtofl2009-11-26T09:14:43Z2009-11-26T09:14:43ZFound 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#1802365Comment by xtofl on I can not get access to pointer to member. Why?xtofl2009-11-26T08:54:05Z2009-11-26T08:54:05ZDoesn't the <code>&</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#1802358Comment by xtofl on I can not get access to pointer to member. Why?xtofl2009-11-26T08:52:50Z2009-11-26T08:52:50ZIt's legal syntax. In Comeau, this compiles. -1http://stackoverflow.com/questions/1802204/i-can-not-get-access-to-pointer-to-member-why/1802365#1802365Comment by xtofl on I can not get access to pointer to member. Why?xtofl2009-11-26T08:50:42Z2009-11-26T08:50:42ZHowever, 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#1802365Comment by xtofl on I can not get access to pointer to member. Why?xtofl2009-11-26T08:50:10Z2009-11-26T08:50:10ZI 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#1797798Comment by xtofl on Should I support Unicode in passwords?xtofl2009-11-25T16:06:37Z2009-11-25T16:06:37ZAlthough 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-problemComment by xtofl on C++ inheritance problemxtofl2009-11-24T13:55:23Z2009-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#1789683Comment by xtofl on compare tchar[] and char[]xtofl2009-11-24T12:13:19Z2009-11-24T12:13:19ZIt's acceptable to convert <code>CHAR</code> to <code>TCHAR</code>.http://stackoverflow.com/questions/1788550/should-the-conditional-operator-evaluate-all-arguments/1788851#1788851Comment by xtofl on Should the conditional operator evaluate all arguments?xtofl2009-11-24T09:31:28Z2009-11-24T09:31:28ZThat makes sense. Thanks.http://stackoverflow.com/questions/1788357/algorithm-for-vector-problemComment by xtofl on Algorithm for vector problemxtofl2009-11-24T08:55:26Z2009-11-24T08:55:26Zand dont <code>const short &generation</code>: on a 64bit system, the pointer is 4 times bigger than the argument...