User MSalters - Stack Overflowmost recent 30 from stackoverflow.com2009-12-16T12:52:58Zhttp://stackoverflow.com/feeds/user/15416http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1913548/program-a-system-with-c/1913567#1913567-1Answer by MSalters for Program a system with C++MSalters2009-12-16T09:57:51Z2009-12-16T09:57:51Z<p>You can write all possible programs in C++. In fact, you can write most programs in most languages, especially if you exclude performance concerns. This concept is known as "Turing completeness"</p>
http://stackoverflow.com/questions/1907012/which-stl-containers-require-the-use-of-cadapt/1908140#19081402Answer by MSalters for Which STL containers require the use of CAdapt?MSalters2009-12-15T15:17:55Z2009-12-15T15:17:55Z<blockquote>
<p>What is the full list of STL containers with which CAdapt should be used?</p>
</blockquote>
<p>None. Implementations should assume operator& is overloaded, and use the correct expression <code>&reinterpret_cast<char&>(obj)</code></p>
<p>Now, there is another question that you didn't ask:</p>
<blockquote>
<p>My VC++ STL implementation doesn't agree. It does provide <code>CAdapt</code> as a workaround. What is the full list of its containers with which CAdapt should be used?</p>
</blockquote>
<p>Top of my head, I'd day <code>vector<T></code> (stores them as a <code>T[]</code> so reasonably needs arithmetic on them) and deque (stores them as multiple smaller <code>T[]</code>s so same rationale). list, map, set, multiset and multimap all work on nodes, so they themselves already wrap each object.</p>
http://stackoverflow.com/questions/1852302/a-proposal-to-add-statemachine-support-to-c-like-language/1908081#19080811Answer by MSalters for A proposal to add statemachine support to C++-like languageMSalters2009-12-15T15:07:47Z2009-12-15T15:07:47Z<p>Read your proposal, have the following comments:</p>
<ol>
<li><p>There's actually no keyword to declare and define an actual state machine! Do you assume a single global state machine (and thus a single global state)? How does that relate to <code>__active__</code> ?</p></li>
<li><p>The closest comparable construct in C++ is actually the enum. Why not extend it?</p></li>
<li><p>There seems to be some connection between defined events and states, but I fail to see how it's implemented. </p></li>
<li><p>Why are threads and timers needed at all? Some use cases of state machines may benefit from them, but a good proposal should keep these seperate. Most importantly this should allow the use of standard C++0x threads.</p></li>
</ol>
<p>Personally, I would extend the enum syntax:</p>
<pre><code>enum Foo {
red, blue, green; /* Standard C++ so far - defines states. State list ends with a ; not a , */
Foo() { *this = red; } // Reuse ctor syntax, instead of __initial__
~Foo() { } // reuse dtor syntax, instead of __onexit__
void Bar() {/**/} // Defines an event, no return value. Doesn't need keyword __event__
};
</code></pre>
<p>It follows naturally that you can now declare your events in a header, and define them in a .cpp file. I don't even need to suggest the syntax here, any C++ programmer can guess that at this point. Add a bit of inheritance syntax for combined states:</p>
<pre><code>enum DrawingObject : public Shape, public Color { /** } // allows (red && circle)
</code></pre>
<p>and you're pretty much at the point where your proposal is, without any new keywords, all by reusing an already familiar syntax.</p>
http://stackoverflow.com/questions/1902976/msvc-any-way-to-check-if-function-is-actually-inlined/1906674#19066740Answer by MSalters for MSVC - Any way to check if function is actually inlined?MSalters2009-12-15T11:01:00Z2009-12-15T11:01:00Z<p>Generate a "MAP" file. This gives you the addresses of all non-inlined functions. If your function appears in this list, it's not inlined, otherwise it's either inlined or optimized out entirely (e.g. when it's not called at all).</p>
http://stackoverflow.com/questions/1904796/specializing-functions-on-stl-style-container-types/1906624#19066241Answer by MSalters for specializing functions on stl style container typesMSalters2009-12-15T10:51:12Z2009-12-15T10:51:12Z<p>STLcontainers by definition have a typedef <code>iterator</code>, with 2 methods <code>begin()</code> and <code>end()</code> retruning them. This range <em>is</em> what the container contains. If there's no such range, it's not a container in the STL sense. So I'd sugegst something along the line of (not checked)</p>
<pre><code>template<typename CONTAINER>
void f(CONTAINER& c,
typename CONTAINER::iterator begin = c.begin(),
typename CONTAINER::iterator end = c.end())
{ }
</code></pre>
http://stackoverflow.com/questions/1906059/random-characters-in-pseudocode/1906461#19064610Answer by MSalters for Random Characters in pseudocodeMSalters2009-12-15T10:22:12Z2009-12-15T10:22:12Z<p>The easiest way is to realize that there are 26 alphanumeric characters. So, generate a <em>number</em> between 1 and 26 (or 0 and 25), and convert that number to a letter between A and Z. Repeat 200 times to get a string.</p>
http://stackoverflow.com/questions/1906342/windows-add-security-restrictions-to-current-process/1906388#19063880Answer by MSalters for Windows: add security restrictions to current process?MSalters2009-12-15T10:08:18Z2009-12-15T10:08:18Z<p>The .NET concept you're looking for is called <a href="http://msdn.microsoft.com/en-us/library/5ba4k1c5.aspx" rel="nofollow">"permissions"</a>. There is an additional level of protection offered by Windows itself, <a href="http://msdn.microsoft.com/en-us/magazine/cc163823.aspx" rel="nofollow">"privileges"</a>. </p>
http://stackoverflow.com/questions/1906238/macro-definition-for-message-mapping/1906353#19063532Answer by MSalters for Macro definition for message mappingMSalters2009-12-15T10:02:00Z2009-12-15T10:02:00Z<p>The "illegal escape sequence" part tells me that you have traling whitespace after your <code>\</code>. Therefore the next lines are not part of the macro.</p>
http://stackoverflow.com/questions/1900514/what-is-the-appropriate-english-language-terminology-for-referring-to-the-object/1900574#19005743Answer by MSalters for What is the appropriate English language terminology for referring to the object in C++?MSalters2009-12-14T12:10:39Z2009-12-14T13:17:35Z<p>I tend to use the same convention in documentation as I use in code: I leave it implicit. E.g. "Add another thing and return the sum". </p>
<p>When I need to be explicit, it's for comments read by other programmers. They know C++, <code>*this</code> is easily understood. E.g. "Add another Thing to <code>*this</code> by adding all members except Thing::foo which will become 0 (See bug #42)"</p>
http://stackoverflow.com/questions/1900632/how-to-detect-if-page-load-in-newly-started-browser-process-fails/1900830#19008300Answer by MSalters for How to detect if page load in newly-started browser process fails?MSalters2009-12-14T13:08:18Z2009-12-14T13:08:18Z<p>Don't start the page in this form. Instead, create a local <code>http://localhost:<port>/wrapper.html</code> which loads <code>http://localhost/page.aspx</code> and then either <code>http://localhost:<port>/pass.html</code> or <code>http://localhost:<port>/fail.html</code>. localhost: is a trivial HTTP server interface implemented by your app.</p>
<p>The idea is that Javascript gives you an API <em>inside</em> the browser, which is far more standard than the APIs on the <em>outside</em> of browsers. Since the Javascript on wrapper.html comes from the same server and even port as the subsequent resources, this should satisfy the same-origin policies in current browsers.</p>
http://stackoverflow.com/questions/1900577/how-can-i-catch-moment-when-someone-kill-java-exe-process/1900712#19007122Answer by MSalters for How can I catch moment when someone kill java.exe process? MSalters2009-12-14T12:41:43Z2009-12-14T12:41:43Z<p>some practical solutions have already been suggested, but another is to ping-pong a "last status" message between <strong>2</strong> applications that monitor each other. When one dies, the other one writes the last received message to a log file. Users can't kill both processes quickly enough with Task Manager.</p>
http://stackoverflow.com/questions/1900614/ui-question-designing-for-widescreen-and-43-aspect-ratios-simultaneously/1900684#19006841Answer by MSalters for UI question: Designing for widescreen and 4:3 aspect ratios simultaneously?MSalters2009-12-14T12:37:44Z2009-12-14T12:37:44Z<p>The obvious answer seems to be an offset. Since 4x3 is 16x9, it appears you want a 16x9 screen to have 2x9 bands to the left and the right. Hence, the X offset should be (2/16) * width.</p>
<p>For 16x10 screens, the factor is slightly more complicated: 4x3 is 13.33x10, so you have edges of width 1.67, and the X offset should be (1.67/16) * width = (5/48)* width.</p>
http://stackoverflow.com/questions/1890742/why-is-it-elif-and-not-elsif-in-c-c/1899847#18998470Answer by MSalters for Why is it #elif and not #elsif in C/C++MSalters2009-12-14T09:19:31Z2009-12-14T09:19:31Z<p>For a history of C by one of its creators, see <a href="http://cm.bell-labs.com/cm/cs/who/dmr/chist.html" rel="nofollow">http://cm.bell-labs.com/cm/cs/who/dmr/chist.html</a>. The preprocessor was considered a seperate step, fitting in with UNIX's tradition of providing independent building blocks.</p>
http://stackoverflow.com/questions/1629317/memory-mapped-files-optional-write-possible/1650322#16503221Answer by MSalters for Memory mapped files optional write possible?MSalters2009-10-30T15:00:16Z2009-12-07T18:09:25Z<p>Possible, but non-trivial.</p>
<p>You have to understand memory mapped basics, and the difference between the three modes of memory-mapped files. Both set aside a part of your virtual address space and create a mapping entry in an internal table. No physical RAM is initially allocated. Hence, when you DO try to access the memory, the CPU faults and the OS has to fix up. It does so by copying the file contents to RAM and mapping the RAM to your process, at the faulting address.</p>
<p>Now, the difference between the three modes is how the descriptors are set on the mapped pages. In all cases you get read access on the pages. (The first mode). However, if you ask for write access and subsequently write to it, on your first write the page is marked as writeable and dirty. It can then be written back to the original file, at the discretion of the OS (Second mode). Finally, it's possible to get copy-on-write semantics. You still start out with only read access to the page in memory. When you write to it, the CPU still faults and the OS needs to fix it up. With copy-on-write, that fixup is done by setting the backing store of the changed page to the page file, instead of the original mapped file.</p>
<p>So, in your case you want to use copy-on-write mode. If the user decides to discard the modifications, no problem. You simply discard the memory mapping. All pages that were modified in memory, and were backed by the page file are also discarded.</p>
<p>If the user does decide to save, you've got a slightly harder task. You now need to figure out which parts of the file have changed. Those changes are in memory, and you need to reapply those to the source file. You can do this with <a href="http://msdn.microsoft.com/en-us/library/aa366549.aspx" rel="nofollow">Page Guards</a>. So, when the user decides to save, copy all modified pages to a separate memory block, remap the (unchanged) file for write, and apply the changes.</p>
http://stackoverflow.com/questions/1855472/antlr-c-target-with-visual-studio-2008/1859427#18594271Answer by MSalters for antlr : C++ target with visual studio 2008MSalters2009-12-07T11:27:27Z2009-12-07T11:27:27Z<p>The phrase "C code compatible with C++" means that the code generation targets the common subset of C and C++. Hence, it does not use the token <code>class</code> which has different meanings in C and C++, etctera. But it can use <code>int</code> and <code>foo</code>, where C and C++ agree.</p>
<p>As a result, the code generated can be compiled by both C and C++ compilers. Visual Studio contains both (via <code>/TC</code> and <code>/TP</code> flags) so you could use either mode.</p>
http://stackoverflow.com/questions/1856468/how-to-output-ieee-754-format-integer-as-a-float/1859372#18593721Answer by MSalters for How to output IEEE-754 format integer as a floatMSalters2009-12-07T11:14:25Z2009-12-07T11:14:25Z<p>swegi had the right direction, but missed one character. The correct way is </p>
<pre><code>long l = 1084227584L
float f = reinterpret_cast<float&>(l);
</code></pre>
http://stackoverflow.com/questions/1858606/how-can-i-make-a-rectangle-on-a-cluster-of-tiny-edges-after-opencvs-canny-detect/1859202#18592020Answer by MSalters for how can I make a rectangle on a cluster of tiny edges after opencv's canny detection?MSalters2009-12-07T10:39:40Z2009-12-07T10:39:40Z<p>The obvious thing to do first is discarding any edges that don't belong to a rectangle. The best case is if your rectangles are all oriented the same direction as the camera. In that case, discard any edge that's not North-South or East-West. If the rectangles all have the same orientation, but the camera doesn't, find the dominant direction module 90 degrees, and discard any outlier edges. The worst case is when the rectangles all have different orientations. In that case, you'd still expect edge direcions to cluster: for every edge, there should be at least one parallel and two orthogonal edges. Discard any unmatched edge. (<em>This assumes you find edges more than a few pixels long; it's hard to deterimine the angle of shorter edges.</em>)</p>
<p>After you've eliminated spurious edges by direction, the next step is to see whether you can connect them. You should still have them grouped by angle from the previous step. Now, assume that edges which are aligned belong to the same rectangle, and replace them with a single longer edge. This may cause fake edges between aligned rectangles. This is probably not a major problem, but if it is, fix it with a validation step at the end.</p>
<p>It's likely your edge finder will not work well near corners, because the real edge changes direction abruptly there. Hence, you should extend the edges you've found by a few pixels.</p>
<p>The extended edges will now produce a whole bunch of crossings. Again, take advantage of the fact that you've ordered your edges by direction. Just check for crossings of almost-orthogonal edges. If you find them, create a "crossing" object and associate it with the two edges. They're the tentative corners.</p>
<p>Once you've doe this, look for edges which have at least 2 crossings and see if you can match them up. Depending on the quality of your data, you may want to decide you've found a rectangle when you have 3 or 4 corners. If you find too many crossings on a single edge, you might have connected the edges of two aligned rectangles. This can be especially hard if you have rectangles that are aligned on both sides:</p>
<pre><code> _ _
|_|_|
</code></pre>
http://stackoverflow.com/questions/1858806/calling-win32-api-sendmessage-in-c-richtextbox-to-copy-selected-text-returns-one/1859065#1859065-1Answer by MSalters for Calling Win32 API SendMessage in C# richtextbox to copy selected text returns one character less..MSalters2009-12-07T10:12:37Z2009-12-07T10:12:37Z<p>SendMessage should actually be </p>
<pre><code>public static extern int SendMessage(IntPtr hWnd, uint Msg, int wParam, int lParam);
</code></pre>
<p>wParam and lParam are in fact inputs, not outputs. Hence, you're sending garbage, and lucky to get something back.</p>
http://stackoverflow.com/questions/1858963/vectors-virtual-segmentation-fault-on-function-call/1859017#18590173Answer by MSalters for Vectors, "virtual", Segmentation Fault on function callMSalters2009-12-07T10:03:15Z2009-12-07T10:03:15Z<p>Quoting:</p>
<pre><code>Sphere s(Point(0.0,0.0,-50.0), 40.0);
shapes.push_back(&s);
</code></pre>
<p>You're putting the address of a local variable in a global collection. Two lines later, <code>s</code> goes out of scope and <code>&s</code> becomes invalid.</p>
http://stackoverflow.com/questions/1845908/checking-for-intersection-points-between-two-rectangles/1845988#18459881Answer by MSalters for Checking for intersection points between two rectangles?MSalters2009-12-04T10:00:42Z2009-12-04T10:00:42Z<p>Two rectangles overlap is there is at least one interior point X,Y common to both. Let the first rectable be <code>{T1, L1, B1, R1}</code> and the second <code>{T2, L2, B2, R2}</code> (top, left, bottom, right). Now it follows that <code>(X>L1)</code> and <code>(X<R1)</code> and <code>(Y>T1)</code> and <code>(Y<B1)</code>, and similarly for rectangle 2. From <code>(X>L1)</code> and <code>(X<R2)</code> it follows that <code>(L1<R2)</code>. Similarly, <code>(L2<R1)</code>, <code>(T1<B2)</code> and <code>(T2<B1)</code>. </p>
<p>These 4 conditions are thus necessary. It's not directly obvious that they are also sufficient, but that too is the case. </p>
http://stackoverflow.com/questions/1832785/bootstrap-hard-disk-access/1833783#18337831Answer by MSalters for Bootstrap Hard disk accessMSalters2009-12-02T15:50:35Z2009-12-02T15:50:35Z<p>Not that I'm aware of. Have you seen <a href="http://gaztek.sourceforge.net/osdev/boot/index.html" rel="nofollow">http://gaztek.sourceforge.net/osdev/boot/index.html</a> ? That has a list of examples, at least one of which claims to be reading a file from "C:\" (presumably a DOS-formatted harddisk)</p>
http://stackoverflow.com/questions/1833088/what-gotchas-have-you-discovered-programming-sms-alerts/1833689#18336891Answer by MSalters for What Gotchas have you discovered programming SMS/Alerts?MSalters2009-12-02T15:38:06Z2009-12-02T15:38:06Z<p>SMS is a telco service, not an Internet service. That comes with some different rules.</p>
<p>For starters, many endpoints are billed/billable, and have contracts with a single service provider. This will include all of your use cases.</p>
<p>Secondly, billing is a contract matter both on the sending and the receiving side. You simply cannot state as a sender that "Host pays", unless you restrict yourself to sending SMS to specific countries. USA is the most famous exception. "Receiver pays" is even worse. Due to SMS spam, telco's will usually allow this kind of traffic only when you have a contract with them. </p>
<p>Third-party SMS operators can deal with many of these problems. It's very easy for them to be more service-oriented than the average telco. They might even be able to deliver international SMS for you. </p>
<p>SMS tends to buffer in the network itself, not necessarily the email gateway. In individual cases, the difference is probably invisible to you. But you would still have delays even if you had a direct SS7 link to the telco.</p>
<p>Real telco's have test gateways, but the terms of use for those I can't give you. The idea though is definitely to be able to test you app at lower costs.</p>
<p>SMS uses its own alphabet, a rather nasty multi-septet encoding (7/14/21 bits!) The quoted 160 character limit comes from a 140 byte payload. This could also be coded as 70 UTF-16 characters.</p>
http://stackoverflow.com/questions/1833318/not-able-execute-createprocess-with-photoviewer-dll/1833500#18335001Answer by MSalters for Not able execute CreateProcess with PhotoViewer.dllMSalters2009-12-02T15:10:11Z2009-12-02T15:10:11Z<p>A Win32 executable has extension .EXE; a DLL is not an executable. CreateProcess cannot create a process with just a .DLL. The missing .EXE is "rundll32.exe". </p>
<p>However, that's not what you are after: you want the Shell behavior. <code>ShellExecuteEx()</code> is usually the most convenient function. <code>AssocQueryString()</code> may be appropriate in this case, with the right flags: <code>ASSOCSTR_EXECUTABLE</code> to get the executable in case it's not yet running, and <code>ASSOCSTR_DDEAPPLICATION</code> etc. in case the application already runs. </p>
http://stackoverflow.com/questions/1786231/programming-languages-that-allow-unicode-in-the-names-of-functions-variables-clas/1832417#18324170Answer by MSalters for Programming languages that allow Unicode in the names of functions/variables/classes?MSalters2009-12-02T11:43:24Z2009-12-02T11:43:24Z<p>Even C++ does ! The list is really to big to collect here.</p>
<p>Although I expect Unicode to be hell for languages that claim to be case-insensitive. After the statement <code>Σ = 0</code>, which of the following statements is true? <code>ς == 0</code> or <code>σ == 0</code> ? And assuming it would be the last, does that mean that the statement <code>σ = 0</code> implies that <code>ς == 0</code> ? (Σ is the Greek uppercase Sigma; ς and σ are its <em>two</em> lowercases). </p>
http://stackoverflow.com/questions/1832304/avoid-printing-unicode-replacement-character-in-java/1832341#18323413Answer by MSalters for Avoid printing unicode replacement character in JavaMSalters2009-12-02T11:26:36Z2009-12-02T11:26:36Z<p>There is no Unicode character U+FFFD. Hence, the code is logically incorrect. The intended use of the Unicode Replacement Symbol is to be substitued for bad input (such as <code>(char)65533</code>). </p>
<p>How to fix it: don't put junk in strings. Strings are for text. Bytes are for random binary data.</p>
http://stackoverflow.com/questions/1831353/the-speed-of-net-in-numerical-computing/1832321#18323210Answer by MSalters for The speed of .NET in numerical computingMSalters2009-12-02T11:23:09Z2009-12-02T11:23:09Z<p>Since the (native) Intel MKL is doing the math, you're actually not doing the math in managed code. You're merely using the memory manager from .Net, so the outcomes are easily used by .Net code.</p>
http://stackoverflow.com/questions/1832160/can-i-use-c-templates-to-generate-unicode-ansi-variants-of-a-function-rather-t/1832206#18322064Answer by MSalters for Can I use C++ templates to generate Unicode/ANSI variants of a function, rather than using the preprocessor?MSalters2009-12-02T11:01:48Z2009-12-02T11:01:48Z<p>Roger Pate is entire correct about the interface. You shouldn't bother with A and W suffixes. However, this still leaves the problem of implementation. As you supected, templates are the correct solution. And since you don't need the different names, you can leave out the typedefs. You would just have</p>
<p><code>template <typename TSTRING> void MyFunctionName (TSTRING const&);</code></p>
http://stackoverflow.com/questions/1831991/c-safe-way-to-cast-an-integer-to-a-pointer/1832059#18320591Answer by MSalters for C++: Safe way to cast an integer to a pointerMSalters2009-12-02T10:35:38Z2009-12-02T10:35:38Z<p>The safe way is to keep a record of all live MyClass objects. It's best to keep this record in a <code>std::set<void*></code>, which means you can easily add, remove and test elements. </p>
<p>The reason for storing them as <code>void*</code>s is that you don't risk nastyness like creating unaligned <code>MyClass*</code> pointers from your integers.</p>
http://stackoverflow.com/questions/1829905/what-is-the-copy-constructor-bug-causing-parsing-errors/1831813#18318130Answer by MSalters for What is the copy constructor bug causing parsing errors?MSalters2009-12-02T09:46:19Z2009-12-02T09:46:19Z<p><code>parent.children.push_back(expr)</code> copies the expression. Hence, it calls <code>AST::AST(AST const&)</code>. A bug in that could certainly cause the problem you see. However, without the code, we can't find bugs in it.</p>
http://stackoverflow.com/questions/1826159/swapping-two-variable-value-without-using-3rd-variable/1826377#18263771Answer by MSalters for Swapping two variable value without using 3rd variableMSalters2009-12-01T14:04:41Z2009-12-01T14:04:41Z<p>Stupid questions deserve appropriate answers:</p>
<pre><code>void sw2ap(int& a, int& b) {
register int temp = a; // !
a = b;
b = temp;
}
</code></pre>
<p>The only good use of the <code>register</code> keyword.</p>
http://stackoverflow.com/questions/1913548/program-a-system-with-c/1913630#1913630Comment by MSalters on Program a system with C++MSalters2009-12-16T12:22:27Z2009-12-16T12:22:27ZActually, C++ does have an offical Technical Report that DOES specify exactly such an low-level interface to HW. http://stackoverflow.com/questions/1907921/can-using-0l-to-initialize-a-pointer-in-c-cause-problems/1909620#1909620Comment by MSalters on Can using 0L to initialize a pointer in C++ cause problems?MSalters2009-12-16T10:37:09Z2009-12-16T10:37:09ZI personally prefer <code>if (!some_variable) { }</code>http://stackoverflow.com/questions/1907921/can-using-0l-to-initialize-a-pointer-in-c-cause-problems/1907966#1907966Comment by MSalters on Can using 0L to initialize a pointer in C++ cause problems?MSalters2009-12-16T10:34:47Z2009-12-16T10:34:47ZOverload resolution. Given <code>f(int)</code> and <code>f(int*)</code>, <code>f(NULL)</code> calls <code>f(int)</code> but <code>f(nullptr)</code> calls <code>f(int*)</code>.http://stackoverflow.com/questions/1910733/how-can-i-map-an-int-to-a-corresponding-string-in-c-cComment by MSalters on how can I map an int to a corresponding string in C/C++MSalters2009-12-16T10:27:10Z2009-12-16T10:27:10ZI assume "20 numbers", i.e. ints. You'd need Unicode to get more digits than '0'-'9'. http://stackoverflow.com/questions/1911117/is-there-a-use-for-uninitialized-pointers-in-c-or-cComment by MSalters on Is there a use for uninitialized pointers in C or C++?MSalters2009-12-16T10:24:22Z2009-12-16T10:24:22ZActually, those load-in-place techniques are hacks. If C++ was different, there would be different hacks. E.g. cast raw memory, then memcpy() the vtable pointers in.http://stackoverflow.com/questions/1910832/c-why-arent-pointers-initialized-with-null-by-default/1910875#1910875Comment by MSalters on [C++] Why aren't pointers initialized with NULL by default?MSalters2009-12-16T10:22:31Z2009-12-16T10:22:31ZIt doesn't break compatibility. The idea has been considered in conjunction with "int* x = __uninitialized" - safety by default, speed by intent. http://stackoverflow.com/questions/1913337/replacement-for-vector-accepting-non-standard-constructable-and-not-assignable-ty/1913435#1913435Comment by MSalters on Replacement for vector accepting non standard constructable and not assignable typesMSalters2009-12-16T09:54:27Z2009-12-16T09:54:27ZNo problem: all built-in containers share the assignable requirement. Hence, you need a non-standard one. Boost is the obvious candidate - almost standard, widely tested, liberal license.http://stackoverflow.com/questions/1913337/replacement-for-vector-accepting-non-standard-constructable-and-not-assignable-tyComment by MSalters on Replacement for vector accepting non standard constructable and not assignable typesMSalters2009-12-16T09:51:15Z2009-12-16T09:51:15ZNo, you're entirely right. GMan mistakenly confused the pimpl idiom with a common reason to use the idiom.http://stackoverflow.com/questions/1912165/best-worst-examples-of-undefined-behavior-in-c-or-c/1912190#1912190Comment by MSalters on Best/worst examples of undefined behavior in C or C++?MSalters2009-12-16T09:48:06Z2009-12-16T09:48:06ZActually, it's Windows that requires this. POSIX requires the reverse cast. <code>dlsym()</code> returns a <code>void*</code> which actually points to a function.http://stackoverflow.com/questions/1912165/best-worst-examples-of-undefined-behavior-in-c-or-c/1912295#1912295Comment by MSalters on Best/worst examples of undefined behavior in C or C++?MSalters2009-12-16T09:45:49Z2009-12-16T09:45:49ZAssumes that sizeof(int*)==sizeof(void*). If sizeof(void*)>sizeof(int*) you have bigger issues. http://stackoverflow.com/questions/1907012/which-stl-containers-require-the-use-of-cadapt/1908140#1908140Comment by MSalters on Which STL containers require the use of CAdapt?MSalters2009-12-16T09:41:29Z2009-12-16T09:41:29Z@Motti: yes, the idea is from ISO C++ WG paper N1324 by Jens Maurer, in response to CWG DR273 (<code>offsetof</code> has the same problem). http://stackoverflow.com/questions/1907668/what-do-i-need-to-know-about-memory-in-c/1907741#1907741Comment by MSalters on What do I need to know about memory in C++?MSalters2009-12-15T14:44:34Z2009-12-15T14:44:34ZNo, for C++ they only matter when you're writing a replacement <code>operator new</code>. That is definitely advanced.http://stackoverflow.com/questions/1900924/behaviour-of-stdpartition-when-called-on-empty-container/1901043#1901043Comment by MSalters on Behaviour of std::partition when called on empty container?MSalters2009-12-15T11:56:23Z2009-12-15T11:56:23ZThere should be a statement somewhere that says the iterator arguments to <code>partition()</code> represent a range. If not, a DR would be in order.http://stackoverflow.com/questions/1900924/behaviour-of-stdpartition-when-called-on-empty-container/1900938#1900938Comment by MSalters on Behaviour of std::partition when called on empty container?MSalters2009-12-15T11:53:46Z2009-12-15T11:53:46ZYUp: the reason is that there is the range [first, last) is empty. So a statement like "for any iterator j in the range [first, i) <code>pred(j)!= false</code> holds because there are no iterators j at all, and thus none for which <code>pred(j)==false</code>.http://stackoverflow.com/questions/1900802/where-does-the-c-compiler-start/1900818#1900818Comment by MSalters on Where does the C++ compiler start?MSalters2009-12-15T11:18:57Z2009-12-15T11:18:57ZAnd in fact there might not even be a compilation order with distributed compiling. You can't say a.cpp compiled before or after b.cpp, if it happened on a different machine.