KTC
|
Registered User
|
|
|
Oct 18 |
awarded | ● Popular Question |
|
Oct 5 |
comment |
What’s your favorite “programmer” cartoon? Not anymore. :) |
|
Oct 5 |
revised |
What’s your favorite “programmer” cartoon? replace dead linked image |
|
Sep 25 |
comment |
What’s the worst security hole you’ve ever seen? @TWith2Sugars, was that after you've ordered whatever you wanted to from them? ;-) |
|
Sep 17 |
awarded | ● Yearling |
|
Aug 21 |
comment |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC What you posted is exactly what's already there.... |
|
Aug 19 |
comment |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC Yep. (lala 15 chars) |
|
Aug 19 |
revised |
Best Installer Packages in Windows edited tags |
|
Aug 17 |
answered | Good source to learn how about virus and other security tools? |
|
Aug 16 |
answered | easter_date() in JavaScript |
|
Aug 15 |
answered | What exactly is nullptr in C++0x? |
|
Aug 15 |
answered | how to test a prime number 1000 digits long? |
|
Aug 15 |
comment |
Why is *= different regarding loss of data on conversion? Never mind /W4, 2008 & 2010 doesn't give a warning even with /Wall. |
|
Aug 15 |
comment |
Safely overloading stream operator>> Also make sure you check the fail bit before you try doing anything. If it's set already, just return the stream. |
|
Aug 15 |
revised |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC expand for bounty |
|
Aug 14 |
comment |
Why is *= different regarding loss of data on conversion? @John D., are you sure you put the warning level at /W4 ? |
|
Aug 14 |
comment |
C++ fstream << and >> operators with binary data. Selling it is how they make their money, so unlikely. Would be nice though I agree. Late draft for the 98 version is available at ftp.research.att.com/pub/c++std/WP/CD2 |
|
Aug 13 |
comment |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC I'm looking at two different member function definition, with exactly the same signature, down to the letter, with one being in namespace say ns3 (that isn't compiling), and one being in namespace say ns4, inside ns3 where it is compiling... :( |
|
Aug 13 |
revised |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC added 127 characters in body |
|
Aug 13 |
revised |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC further details on discovery |
|
Aug 13 |
comment |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC I've tried examples using similar template & replicating the entire structure of the codes up to the first error and they compiles, so now I'm going the other direction, with the full code, and stripping out all function definition and see if it compiles. I'll edit it when I have something. |
|
Aug 13 |
comment |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC * Point to sentence "the first error message (among many) ..." * :) |
|
Aug 12 |
comment |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC I actually saw that question earlier when I was searching for possible reasons I'm having problems with mine. His might have something to do with Argument Dependent Lookup. A qualified argument does not activate ADL, whereas an unqualified argument does. |
|
Aug 12 |
comment |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC The error occurs at the definition. It is possible to get rid of the error by explicitly qualifying the parameters, but toy example test shows that VS doesn't require that. |
|
Aug 12 |
revised |
Template’s member typedef use in parameter undeclared identifier in VS but not GCC typo |
|
Aug 12 |
asked | Template’s member typedef use in parameter undeclared identifier in VS but not GCC |
|
Aug 12 |
comment |
Is there a library class to represent floating point numbers? If you want to represent money, just store it in terms of the small units of money, and then convert it later if for example you want to represent it to a human. |
|
Aug 12 |
answered | Is Programming always interesting? |
|
Aug 12 |
comment |
Copying C-Style String to Free Store Using Only Dereference There, done! :D |
|
Aug 12 |
revised |
Copying C-Style String to Free Store Using Only Dereference exa |
|
Aug 12 |
comment |
Where do you track the developments of new c++ standards? Which makes it stable, and considering how widely used it is, is arguably a good thing. |
|
Aug 12 |
comment |
C, C++ preprocesser macro Is there? Oops. I've removed that bit then. |
|
Aug 12 |
answered | C, C++ preprocesser macro |
|
Aug 12 |
comment |
Copying C-Style String to Free Store Using Only Dereference Oh yes, you need to copy the null character as well, so in the above example, you'd need to go from i=0 to i<=count. |
|
Aug 11 |
comment |
Copying C-Style String to Free Store Using Only Dereference Oh, I'm chilled. Just making sure you knew. :) |
|
Aug 11 |
comment |
Copying C-Style String to Free Store Using Only Dereference And like I said in my answer, you need to allocate length+1 because you need space for the null character as well. |
|
Aug 11 |
comment |
Copying C-Style String to Free Store Using Only Dereference You're not returned anything from your function AND you're not deallocated your dynamically allocated memory. |
|
Aug 11 |
accepted | Copying C-Style String to Free Store Using Only Dereference |
|
Aug 11 |
comment |
Copying C-Style String to Free Store Using Only Dereference p[i] is the same as *(p + i) |
|
Aug 11 |
answered | Copying C-Style String to Free Store Using Only Dereference |
|
Aug 11 |
comment |
Which STL container should I use for a FIFO? I've tried it. :D A quick & dirty 10 elements container with 100,000,000 pop_front() & push_back() rand() int numbers on Release build for speed on VC9 gives : list(27), queue(6), deque(6), array(8). |
|
Aug 11 |
comment |
Which STL container should I use for a FIFO? Why not try it with both and time it to see which one is faster for your need ? |
|
Aug 11 |
comment |
Would it be a good idea to learn COBOL? If so, how? I'll rather pull my hairs out LOL |
|
Aug 11 |
comment |
C varargs - va_copy issues I think MS have actually gone as far as on record to say they have no intention to go for C99, except to pick and choose the odd features from it that their customers want. |
|
Aug 11 |
revised |
wxWindows vs. Gtk for Cross Platform GUI Programming edited tags |
|
Aug 11 |
comment |
wxWindows vs. Gtk for Cross Platform GUI Programming Subjective. Community wiki if it stand a chance of staying open. |
|
Aug 10 |
comment |
What does this mean const int*& var? The 3rd one is passing the pointer by value, whereas the previous two is passing the pointer by reference. We are talking about the passing the pointer here, not concerning ourself with that the pointer is pointing to. |
|
Aug 10 |
comment |
Is there a reason to not use Boost? boost.org |
|
Aug 10 |
comment |
C++: 2D arrays vs. 1D array differences Shouldn't i be from 0 to (3 * NMAX) - 1 ? |
|
Aug 10 |
answered | Linker options to prevent “Program too big to fit in memory” |
