User introp - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T19:03:36Zhttp://stackoverflow.com/feeds/user/8398http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/269722/what-is-the-best-way-to-merge-a-feature-branch-into-the-mainline-in-subversion/269958#2699580Answer by introp for What is the best way to merge a feature branch into the mainline in Subversion?introp2008-11-06T19:29:02Z2008-11-06T19:29:02Z<p>Have a look at <a href="http://www.orcaware.com/svn/wiki/Svnmerge.py" rel="nofollow">svnmerge</a>; it keeps track of the "what have I merged? what have I chosen to not merge?" part of the job for you, and relies on svn's "merge" command to do the heavy lifting.</p>
http://stackoverflow.com/questions/269135/how-do-you-structure-unit-tests-for-cross-compiled-code/269948#2699482Answer by introp for How do you structure unit tests for cross-compiled code?introp2008-11-06T19:24:33Z2008-11-06T19:24:33Z<p>In ten-plus years in the embedded industry, I've seen it done quite a few ways. At my current company:</p>
<ul>
<li>one of our products has enough horsepower (and space) to run tests on the target board. It's somewhat slow, and we can't stick all the python on the box we'd like, but it works well.</li>
<li>one of our products doesn't have the space, so we compile all the libs we can in x86 (anything that isn't hardware-dependent) and run unit tests on desktops. It's not perfect, but far better than nothing.</li>
<li>one of our components is a super-lightweight power-miser on exotic hardware, so virtually no unit tests are possible. Core algorithms (DES, etc.) are tested on x86 as above, but much of the code simply has to be tested as a whole, in situ. This entails lot of code reviews.</li>
</ul>
http://stackoverflow.com/questions/228908/is-listsize-really-on/230629#2306299Answer by introp for Is list::size() really O(n)?introp2008-10-23T17:25:18Z2008-10-23T17:25:18Z<p>I've had to look into gcc 3.4's list::size before, so I can say this:</p>
<ol>
<li>it uses std::distance(head, tail)</li>
<li>std::distance has two implementations: for types that satisfy RandomAccessIterator, it uses "tail-head", and for types that merely satisfy InputIterator, it uses an O(n) algorithm relying on "iterator++", counting until it hits the given tail.</li>
<li>std::list does not satsify RandomAccessIterator, so size is O(n).</li>
</ol>
<p>As to the "why", I can only say that std::list is appropriate for problems that require sequential access. Storing the size as a class variable would introduce overhead on every insert, delete, etc., and that waste is a big no-no per the intent of the STL. If you really need a constant-time size(), use std::deque.</p>
http://stackoverflow.com/questions/72616/embed-data-in-a-c-program/72701#727011Answer by introp for Embed data in a C++ programintrop2008-09-16T14:12:00Z2008-09-16T14:12:00Z<p>It's slightly ugly, but you can always use something like:</p>
<pre>const char *query_foo =
#include "query_foo.txt"
const char *query_bar =
#include "query_bar.txt"
</pre>
<p>Where query_foo.txt would contain the quoted query text.</p>
http://stackoverflow.com/questions/62389/what-are-the-differences-between-visual-c-6-0-and-visual-c-2008/64935#649350Answer by introp for What are the differences between Visual C++ 6.0 and Visual C++ 2008?introp2008-09-15T17:29:22Z2008-09-15T17:29:22Z<p>Did you know that MS VC6's implementation of the STL isn't thread-safe? In particular, the reference counting optimization in basic_string blows up even when compiled with the multi-threaded libraries.
<a href="http://support.microsoft.com/kb/813810" rel="nofollow">http://support.microsoft.com/kb/813810</a></p>
http://stackoverflow.com/questions/64782/how-do-you-add-an-int-to-a-string-in-c/64797#647972Answer by introp for How do you add an int to a string in C++?introp2008-09-15T17:10:58Z2008-09-15T17:10:58Z<p>cout << text << i;
(The << operator for ostream returns a reference to the ostream, so you can just keep chaining the << operations. That is, the above is basically the same as:
cout << text;
cout << i;
)</p>