coppro
|
Registered User
|
I'm a high school stupid that knows too much.
|
|
2d |
comment |
Using an external tool for C# builds in Visual Studio No, I hadn't. Thanks for the idea. |
|
Nov 29 |
comment |
Using an external tool for C# builds in Visual Studio While I like that suggestion, that's not an option; SCons would have a heart attack if you passed it all the csc flags |
|
Nov 27 |
comment |
Using an external tool for C# builds in Visual Studio I'm confused. How do I redefine it to make it do something different? |
|
Nov 26 |
revised |
Recursive problem edited tags |
|
Nov 24 |
comment |
How I can use mysql in C++? It's probably not the root problem, but using Dev C++ is a pretty bad idea. It's really out of date and not entirely a great program. There are better free IDEs (Eclipse, Code::Blocks) out there. |
|
Nov 24 |
comment |
Using an external tool for C# builds in Visual Studio Ah, very neat info, and close to what I'm looking for, but not quite it - I'm not really trying to replace the compiler; rather to tell MSVC not to use it (if that makes sense) |
|
Nov 20 |
comment |
Using an external tool for C# builds in Visual Studio I am not looking for a way to compile outside the IDE at all. I'm trying to click the 'compile' button inside the IDE and have it invoke Scons. I can do this for C++ using a Makefile project. The build works fine with Scons now, I am just looking for IDE integration. |
|
Nov 19 |
revised |
Convert string from __DATE__ into a time_t teletype identifiers |
|
Nov 19 |
comment |
Using an external tool for C# builds in Visual Studio This wouldn't integrate well with other systems, like the debugger. |
|
Nov 19 |
revised |
Using an external tool for C# builds in Visual Studio Clarification |
|
Nov 19 |
asked | Using an external tool for C# builds in Visual Studio |
|
Nov 18 |
comment |
Cache Line Alignment (Need clarification on article) @Bahbar: yes, I did mean bytes. I looked it up and you're right about that - there was some discussion of allowing alignment requirements where each alignment wasn't necessarily a multiple of the previous one. I guess they decided to fix it by adding that paragraph, rather than to adjust the definition to allow odd alignments like 3 and 6 (which is what I thought they did). Thanks! |
|
Nov 18 |
revised |
simulate C++ function template instantiation with implicit conversion added 384 characters in body; added 89 characters in body; added 1 characters in body |
|
Nov 18 |
comment |
simulate C++ function template instantiation with implicit conversion @Victor Liu: No, the template parameter lists are correct. That's a template template parameter, which is a template parameter that is another uninstantiated template. I suppose I wasn't clear after I changed my example around to put the machinery into Adapter; I'll fix that up. Also, I already fixed the non-const reference issue, that was an oversight. |
|
Nov 17 |
comment |
simulate C++ function template instantiation with implicit conversion This solution doesn't scale. Imagine if there were 15 base classes; Adapter would be difficult to maintain and a waste of space (as it would store 14 unused pointers) |
|
Nov 17 |
answered | simulate C++ function template instantiation with implicit conversion |
|
Nov 17 |
comment |
Multiply a constant to a complex & operator overloading problems Your post is excellent, but I'd suggest using a single operator * outside the class for multiplying two Complex values, and let implicit conversion take care of the case where there's a double on one side. |
|
Nov 17 |
comment |
simulate C++ function template instantiation with implicit conversion I'm a bit confused. In your actual implementation, how do you figure 2^N functions? It would be more helpful if you could elaborate an example that shows where you are having exponential functions |
|
Nov 17 |
accepted | Template function with dependent type parameters within template class |
|
Nov 17 |
answered | Modifying binary files |
|
Nov 17 |
answered | Template function with dependent type parameters within template class |
|
Nov 17 |
answered | Need help understanding using c++ map as an asscoiative array |
|
Nov 17 |
revised |
Need help understanding using c++ map as an asscoiative array added backticks |
|
Nov 17 |
comment |
boost::format - attempting to use HTML as formatter string - need some help How are you passing that string into Boost.Format? Is it a literal? If so, you have " characters inside, and they will cause errors. If you're reading from a file, are you sure you're reading the entire file and not delimiting by whitespace or newlines? |
|
Nov 17 |
comment |
boost::format - attempting to use HTML as formatter string - need some help Yes, because 100%% isn't a valid value. When it goes through Boost.Format, however, it will become valid as it replaces the double %. |
|
Nov 17 |
accepted | Cache Line Alignment (Need clarification on article) |
|
Nov 17 |
comment |
How to have templated function overloads accept derived classes from different base classes? An addendum - what enable_if does is it only has a type member if the condition is true, so it causes a compile error if you try to use type and the condition is false. However, because of a principle known as SFINAE (substitution failure is not an error), that just tells the compiler not to pick that version of the template. If you have another one for BaseY, the compiler will fail to create one of the two templates, and be forced to use the other. Since it will be the only eligible template, it will be selected. |
|
Nov 17 |
comment |
Cache Line Alignment (Need clarification on article) @splicer, @Bahbar: Specifying two alignments causes the loosest alignment that is satisfied by both to be used (e.g. a [[align(2), align(3)]] would be aligned to 6 bits if you had a platform that could support a non-power-of-2 alignment, which can in theory exist. The standard allows for any alignment conceivable. |
|
Nov 16 |
answered | Cache Line Alignment (Need clarification on article) |
|
Nov 16 |
answered | Why should exceptions be used conservatively? |
|
Nov 16 |
comment |
Visualizing C++ to help understanding it Doxygen actually has very impressive visualization tools. It can generate comprehesive call graphs, caller graphs, inheritance graphs, and has one of the most complete C++ parsers available (it's actually better than MSVC's!) |
|
Nov 16 |
revised |
Where can I find standard BNF or YACC grammar for C++ language? grammar |
|
Nov 16 |
comment |
Where can I find standard BNF or YACC grammar for C++ language? No, because parsing requires name resolution; that's my point. C++'s grammar is that bad. |
|
Nov 14 |
revised |
When should static_cast, dynamic_cast and reinterpret_cast be used? I've improved the answer by mentioning access control in more cases. |
|
Nov 13 |
answered | how to get started on learning new language |
|
Nov 9 |
comment |
Template lookup in class? Comeau accepts it too on their online compiler. This is because of the way that injected-class-names work in templates (an injected-class-name is the term for the special name for a type visible in its own scope, to prevent name lookup from finding another class). The injected-class-name in a template refers to the class template, but if it's used without a template argument list, it refers to whatever version of the template is being currently instantiated - so inside Wrapper<T>, Wrapper is a synonym for Wrapper<T>. Arguably, naming the constructor Wrapper<T>() is more correct. |
|
Nov 4 |
comment |
Out of four std::vector objects select the one with the most elements Yes, any container would work, but I picked an array because of the ease of initialization (thankfully C++0x will fix that). You could also just replace vecs + 4 with vecs + (sizeof(vecs) / sizeof(*vecs)) and extend the array to an arbitrary size. |
|
Nov 4 |
answered | Who deletes the memory allocated during a “new” operation which has exception in constructor |
|
Nov 4 |
answered | Out of four std::vector objects select the one with the most elements |
|
Nov 3 |
comment |
Hidden Features and Dark Corners of STL? I second the motion - what specific aspect of locales are you after? |
|
Nov 3 |
comment |
Hidden Features and Dark Corners of STL? You can just cut out the parts of Boost that you want, and discard those that you don't want. That's part of the beauty of Boost. |
|
Nov 2 |
comment |
How to hide “delete” on a class hierarchy? You could try to declare the base class's delete operator as private so that it can't be used from the outside, except that the object could be deliberately deallocated with global delete ("::delete ptr"). Then you could make your manager a friend (or just have it use global delete and leave the operator undefined). |
|
Nov 2 |
answered | How to hide “delete” on a class hierarchy? |
|
Nov 2 |
comment |
How to hide “delete” on a class hierarchy? This won't work if it's called through a virtual destructor. |
|
Nov 2 |
awarded | ● Civic Duty |
|
Nov 2 |
answered | Why does initialization of a template type require a repeat of the type of the variable? |
|
Nov 2 |
revised |
Handle empty structs in Objective-C (Coordinate in custom class) removing C++ tag |
|
Nov 2 |
revised |
Specify ordinals of C++ exported functions in a DLL missing paren |
|
Oct 26 |
comment |
design by contract tests by assert or by exception? But an assertion should be used when the internal data has been corrupted past fixing - if an assertion triggers, you can make no assumptions about the state of the program because it means something is /wrong/. If an assertion has gone off, you can't assume any data is valid. That's why a release build should assert - not to tell the programmer where the problem is, but so that the program can shut down and not risk bigger problems. The program should just do what it can to facilitate recovery later, when the data can be trusted. |
|
Oct 25 |
awarded | ● Guru |
