User moonshadow - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T17:05:42Zhttp://stackoverflow.com/feeds/user/11834http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1812286/javascript-bitwise-problem/1812299#18122993Answer by moonshadow for Javascript bitwise problemmoonshadow2009-11-28T11:27:43Z2009-11-28T11:27:43Z<p><code>((n & item.c) == item.c)</code> means "true if all the bits set in item.c are also set in n". If item.c is 7 and n is 11, bit 4 is set in item.c but not in n so the result is false.</p>
<p>It sounds like you want <code>if (n & item.c) { ... }</code></p>
http://stackoverflow.com/questions/1808771/different-32bit-cast-into-long-int64-why/1808894#18088943Answer by moonshadow for Different 32bit-cast into long/__int64, why?moonshadow2009-11-27T13:50:32Z2009-11-27T13:50:32Z<p>What's <code>sizeof(long)</code> in your environment? I suspect if you test you'll find it's 4, i.e. your <code>unsigned long</code> are actually 32-bit values.</p>
http://stackoverflow.com/questions/1792776/shader-limitations/1792882#17928825Answer by moonshadow for Shader limitationsmoonshadow2009-11-24T20:59:29Z2009-11-24T20:59:29Z<p>Shader uniforms are typically implemented by the hardware as registers (or sometimes by patching the values into shader microcode directly, e.g. nVidia fragment shaders). The limit is therefore highly implementation dependent.</p>
<p>You can retrieve the maximums by querying <code>GL_MAX_VERTEX_UNIFORM_COMPONENTS_ARB</code> and <code>GL_MAX_FRAGMENT_UNIFORM_COMPONENTS_ARB</code> for vertex and fragment shaders respectively.</p>
http://stackoverflow.com/questions/1785100/why-use-a-pointer-to-a-pointer-to-the-stack-when-creating-a-push-function/1785133#17851330Answer by moonshadow for Why use a pointer to a pointer to the stack when creating a push function?moonshadow2009-11-23T18:45:03Z2009-11-23T18:45:03Z<p>The stack is represented by a pointer to the last element that was pushed onto it. In order to change the stack by pushing an element onto it, this pointer must be updated, so we pass a pointer to it to the push function.</p>
http://stackoverflow.com/questions/1642472/why-warning-in-c-and-cant-compile-in-c/1642489#16424891Answer by moonshadow for Why warning in C and can't compile in C++?moonshadow2009-10-29T09:21:53Z2009-10-29T09:21:53Z<p>You've declared g to be a function taking one argument of type int and returning an int, and h to be a function taking one argument of type char and returning an int result. The two function signatures are not interchangeable and so you can't assign from a pointer to one to a pointer to the other.</p>
http://stackoverflow.com/questions/1612142/screen-capture-on-linux/1612183#16121831Answer by moonshadow for Screen capture on Linuxmoonshadow2009-10-23T08:54:28Z2009-10-23T08:54:28Z<p>Using Xlib to talk to the X server works the same way regardless of your desktop environment. Retrieve a list of windows from the server, work out which one you want and hence its position and size, and use <a href="http://tronche.com/gui/x/xlib/graphics/XGetImage.html" rel="nofollow">XGetImage</a> to retrieve the image data.</p>
<p>IDEs are a matter of taste; there are many suggestions <a href="http://stackoverflow.com/questions/24109/c-ide-for-linux">here</a>.</p>
http://stackoverflow.com/questions/1611853/regular-expression-problem-in-java/1611891#16118911Answer by moonshadow for Regular Expression problem in Javamoonshadow2009-10-23T07:36:55Z2009-10-23T07:53:12Z<p>[^ ... ] will match one character that is not any of ...</p>
<p>So your pattern "[^(abc)]" is saying "match one character that is not a, b, c or the left or right bracket"; and indeed that is what happens in your test.</p>
<p>It is hard to say "replace all characters that are not part of the string 'abc'" in a single trivial regular expression. What you might do instead to achieve what you want could be some nasty thing like</p>
<pre><code>while the input string still contains "abc"
find the next occurrence of "abc"
append to the output a string containing as many "+"s as there are characters before the "abc"
append "abc" to the output string
skip, in the input string, to a position just after the "abc" found
append to the output a string containing as many "+"s as there are characters left in the input
</code></pre>
<p>or possibly if the input alphabet is restricted you could use regular expressions to do something like</p>
<pre><code>replace all occurrences of "abc" with a single character that does not occur anywhere in the existing string
replace all other characters with "+"
replace all occurrences of the target character with "abc"
</code></pre>
<p>which will be more readable but may not perform as well</p>
http://stackoverflow.com/questions/1610283/step-execution-of-release-code-post-mortem-debugging-vs-c/1610312#16103122Answer by moonshadow for Step execution of release code / post-mortem debugging (VS/C++)moonshadow2009-10-22T22:19:42Z2009-10-22T22:19:42Z<p>Recompile just the file of interest without optimisations :)</p>
<p>In general:</p>
<ul>
<li>Switch to interleaved disassembly mode. Single-stepping through the disassembly will enable you to step into function calls that would otherwise be skipped over, and make inlined code more evident.</li>
<li>Look for alternative ways of getting at values in variables the debugger is not able to directly show you. If they were passed in as arguments, look up the callstack - you will often find they are visible in the caller. If they were retrieved via getters from some object, examine that object; glance over the assembly generated by the code that calculates them to work out where they were stored; etc. If all else fails and disabling optimisations / adding a printf() distorts timings sufficiently to affect debugging, add a dummy global variable and set it to the value of interest on entry to the section of interest.</li>
</ul>
http://stackoverflow.com/questions/1610089/how-to-use-cp-from-stdin/1610130#16101300Answer by moonshadow for How to use cp from stdin?moonshadow2009-10-22T21:38:05Z2009-10-22T21:38:05Z<p>The destination directory needs to be the last thing on the command line, however <code>xargs</code> appends stdin to the end of the command line so in your attempt it ends up as the first argument.</p>
<p>You could append the destination to /tmp/foo before using xargs, or use cat in backticks to interpolate the sorce files before the destination:</p>
<pre><code> cp `cat /tmp/foo` /tmp/fred/
</code></pre>
http://stackoverflow.com/questions/1609211/gcc-inline-assembly-good-for/1609251#16092515Answer by moonshadow for GCC: Inline assembly - good for?moonshadow2009-10-22T18:51:11Z2009-10-22T18:51:11Z<p>Inline assembly is generally used to access hardware features not otherwise exposed by the compiler (e.g. vector SIMD instructions where no intrinsics are provided), and/or for hand-optimizing performance critical sections of code where the compiler generates suboptimal code.</p>
<p>Certainly there is nothing to stop you using the inline assembler to test routines you have written in assembly language; however, if you intend to write large sections of code you are better off using a real assembler to avoid getting bogged down with irrelevancies. You will likely find the GNU assembler got installed along with the rest of the toolchain ;)</p>
http://stackoverflow.com/questions/1606596/is-this-a-good-way-to-do-a-strcmp-to-return-false-when-strings-are-empty/1606608#16066084Answer by moonshadow for is this a good way to do a strcmp to return false when strings are emptymoonshadow2009-10-22T11:33:48Z2009-10-22T11:39:04Z<p>Even if you implement the early-out tests you suggest correctly, you are very unlikely to make things any faster by doing this sort of thing - <code>strcmp</code> will already be doing this or nearly this.</p>
http://stackoverflow.com/questions/1604176/size-of-virtual-pointer-c/1604199#16041991Answer by moonshadow for Size of virtual pointer-C++moonshadow2009-10-21T23:22:24Z2009-10-21T23:33:33Z<p>The pointers in the virtual function table are generally the same size as regular pointers in the system. Typically a virtual function table is calculated for every type, and each object instance will contain a pointer to its type's table, so instances of objects containing virtual functions will use <code>sizeof(void *)</code> bytes more per instance than ones that don't. Types deriving from multiple base types must be castable to any base type so may contain multiple pointers to the base types' virtual function tables as necessary. All of this is compiler dependent of course.</p>
http://stackoverflow.com/questions/1602303/is-it-possible-for-my-image-watermark-to-be-read-altered-or-removed/1602363#16023633Answer by moonshadow for Is it possible for my image watermark to be read, altered or removed?moonshadow2009-10-21T17:35:26Z2009-10-21T17:35:26Z<p>In general: </p>
<ul>
<li>to detect a watermark that is not visible to the naked eye you need to have some idea of the encoding scheme</li>
<li>it is possible to come up with a watermarking scheme that yields a watermark one cannot read or definitively confirm the presence of without knowing a secret, however in general that is not the purpose of a watermark</li>
<li>a watermark that does not distort the image sufficiently to be obvious to the naked eye should in general be removable by manipulations that similarly do not degrade the signal sufficiently to be obvious to the naked eye; however, coming up with the required manipulations may be hard and will certainly require specific knowledge of the watermarking scheme.</li>
</ul>
http://stackoverflow.com/questions/1602230/what-are-the-guidelines-for-porting-a-32-bit-program-to-a-64-bit-version/1602274#16022743Answer by moonshadow for What are the guidelines for porting a 32-bit program to a 64-bit versionmoonshadow2009-10-21T17:19:53Z2009-10-21T17:19:53Z<p>Apart from the obvious issues with calling 32-bit libraries:</p>
<ul>
<li>Don't assume a pointer is the same size as an integer. </li>
<li>Don't assume subtracting one pointer from another yields a value that fits in an integer.</li>
</ul>
<p>See also <a href="http://msdn.microsoft.com/en-us/library/aa384190%28VS.85%29.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/aa384190%28VS.85%29.aspx</a></p>
http://stackoverflow.com/questions/1601843/find-if-a-num-is-a-power-of-2-fast/1601867#16018670Answer by moonshadow for Find if a num is a power of 2 fast.moonshadow2009-10-21T16:05:05Z2009-10-21T16:05:05Z<p>This would return true for any even number, but most even numbers are not powers of two.</p>
<p>x is a power of two if (x & (x-1)) is zero and x is not zero</p>
http://stackoverflow.com/questions/1600936/officially-what-is-typename-for/1600977#16009774Answer by moonshadow for Officially, what is typename for?moonshadow2009-10-21T13:53:35Z2009-10-21T13:53:35Z<p>Consider the code</p>
<pre><code>template<class T> somefunction( T * arg )
{
T::sometype x; // broken
.
.
</code></pre>
<p>Unfortunately, the compiler is not required to be psychic, and doesn't know whether T::sometype will end up referring to a type name or a static member of T. So, one uses <code>typename</code> to tell it:</p>
<pre><code>template<class T> somefunction( T * arg )
{
typename T::sometype x; // works!
.
.
</code></pre>
http://stackoverflow.com/questions/1599527/case-what-does-hit-ratio-mean-hierarchical-caching/1599537#15995371Answer by moonshadow for Case: What does hit-ratio mean? Hierarchical Cachingmoonshadow2009-10-21T08:53:00Z2009-10-21T08:53:00Z<p>The hit ratio is the proportion of requests that were satisfied from the cache. That should give you enough information to work out the answers to your other questions.</p>
http://stackoverflow.com/questions/1597468/how-should-i-convert-a-number-to-either-float-or-integer-if-i-dont-know-which-o/1597495#15974955Answer by moonshadow for How should I convert a number to either float or integer, if I don't know which one it is?moonshadow2009-10-20T21:38:50Z2009-10-20T21:38:50Z<p>What do you <em>want</em> the user to enter? <code>parseFloat</code> will parse integers, too. You could just always use that, and in the cases where you actually want to restrict yourself to working with integers, use <code>Math.round()</code> on the result.</p>
http://stackoverflow.com/questions/1597224/ecma-script-as3-cant-do-simple-math-what-gives/1597249#15972497Answer by moonshadow for ECMA Script/AS3 can't do simple math! What gives?moonshadow2009-10-20T20:55:44Z2009-10-20T20:55:44Z<p>Welcome to the wonderful world of <a href="http://en.wikipedia.org/wiki/Floating%5Fpoint#Machine%5Fprecision" rel="nofollow">floating point calculation accuracy</a>. In general, floating point calculations will give you results that are very very nearly correct, but comparing outputs for absolute equality is unlikely to give you results you expect without the use of rounding functions.</p>
http://stackoverflow.com/questions/1597195/reward-for-editing-a-wiki-page/1597213#15972131Answer by moonshadow for Reward for editing a wiki pagemoonshadow2009-10-20T20:49:04Z2009-10-20T20:49:04Z<p>People will game such a mechanic by creating spam pages and replacing page content with copypasta. As soon as you put a moderation / metamodetation scheme in place to prevent this, you could just use that to produce the scoring directly - cf. Stack Overflow.</p>
http://stackoverflow.com/questions/1595859/why-is-non-type-template-parameter-expression-handling-inconsistent-across-compil/1595907#15959071Answer by moonshadow for Why is non-type template parameter expression handling inconsistent across compilers?moonshadow2009-10-20T16:41:54Z2009-10-20T16:41:54Z<p>According to <a href="http://my.safaribooksonline.com/0201700735/app01lev1sec9" rel="nofollow">Stroustrup</a>: "The first non-nested > terminates a template argument list. If a greater-than is needed, parentheses must be used."</p>
<p>Thus, the compilers that tolerate the second set of expressions do so incorrectly; the compiler that fails on <code>X<(int(16) >> 1)> d;</code> is buggy.</p>
http://stackoverflow.com/questions/1591688/calculate-3d-vector-perpendicular-to-a-plane-generated-by-two-vectors/1591697#159169710Answer by moonshadow for Calculate 3D vector perpendicular to a plane generated by two vectorsmoonshadow2009-10-19T23:25:04Z2009-10-19T23:30:21Z<p>Use the <a href="http://mathworld.wolfram.com/CrossProduct.html" rel="nofollow">cross product</a>.</p>
<p>That is, a vector perpendicular to <code>a</code> and <code>b</code> is given by <code>( a.y*b.z - a.z*b.y, a.z*b.x - a.x*b.z, a.x*b.y - a.y*b.x)</code>.</p>
http://stackoverflow.com/questions/1570660/can-i-measure-memory-taken-by-modperl/1591684#15916841Answer by moonshadow for Can I measure memory taken by mod_perl?moonshadow2009-10-19T23:21:06Z2009-10-19T23:21:06Z<p>It doesn't actually look like the number of apache/mod_perl processes in existence or the memory they use has changed much between the two reports you post. I note you did not post the header for the second report. It would be interesting to see the "cached" figure after 24 hours. I am going to go out on a limb and guess that this is where your memory is going - Linux is using it for caching file I/O. You can think of the file I/O cache as essentially free memory, since Linux will make that memory available if processes need it.</p>
<p>You can also check that this is what's going on by performing</p>
<pre><code>sync; echo 3 > /proc/sys/vm/drop_caches
</code></pre>
<p>as root to <a href="http://jons-thoughts.blogspot.com/2007/09/tip-of-day-dropcaches.html" rel="nofollow">cause the memory in use by the caches to be released</a>, and confirming that this causes the amount of free memory reported to revert to initial values.</p>
http://stackoverflow.com/questions/1574911/single-dash-phone-number-regex-validation/1574925#15749256Answer by moonshadow for Single dash phone number - regex validationmoonshadow2009-10-15T20:43:34Z2009-10-15T20:53:04Z<p><code>/^\d+(?:-\d+)?$/</code> should do the trick.</p>
http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbug/1574131#157413111Answer by moonshadow for How to hunt a Heisenbugmoonshadow2009-10-15T18:16:18Z2009-10-15T18:16:18Z<p>Typically bugs of this form are caused by invalid memory access (reading uninitialised data, reading off the end of a buffer...) or thread race conditions. </p>
<p>The former will be affected by optimisations causing data layout to be rearranged in memory, and/or possibly by debug code that initialises newly allocated memory to some value; causing the incorrect code to "accidentally work". </p>
<p>The latter will be affected due to timings changing between optimisation levels. The former is generally much more likely.</p>
<p>If you have some automated way of making freshly allocated memory be filled with some constant value before it is passed to the program, and this makes the crash go away or become reproducible in the debug build, that'll provide a good point to start chasing things.</p>
http://stackoverflow.com/questions/1572290/fastest-way-to-scan-for-bit-pattern-in-a-stream-of-bits/1572621#15726211Answer by moonshadow for Fastest way to scan for bit pattern in a stream of bitsmoonshadow2009-10-15T14:09:41Z2009-10-15T14:23:10Z<p>For a general-purpose, non-SIMD algorithm you are unlikely to be able to do much better than something like this:</p>
<pre><code>unsigned int const pattern = pattern to search for
unsigned int accumulator = first three input bytes
do
{
bool const found = ( ((accumulator ) & ((1<<16)-1)) == pattern )
| ( ((accumulator>>1) & ((1<<16)-1)) == pattern );
| ( ((accumulator>>2) & ((1<<16)-1)) == pattern );
| ( ((accumulator>>3) & ((1<<16)-1)) == pattern );
| ( ((accumulator>>4) & ((1<<16)-1)) == pattern );
| ( ((accumulator>>5) & ((1<<16)-1)) == pattern );
| ( ((accumulator>>6) & ((1<<16)-1)) == pattern );
| ( ((accumulator>>7) & ((1<<16)-1)) == pattern );
if( found ) { /* pattern found */ }
accumulator >>= 8;
unsigned int const data = next input byte
accumulator |= (data<<8);
} while( there is input data left );
</code></pre>
http://stackoverflow.com/questions/1561433/adding-audible-ticks-to-a-waveform-for-onset-detection-debugging/1561481#15614811Answer by moonshadow for adding "audible ticks" to a waveform for onset detection debuggingmoonshadow2009-10-13T16:45:49Z2009-10-13T16:45:49Z<pre><code>float * sample = first sample where beep is to be mixed in
float const beep_duration = desired beep duration in seconds
float const sample_rate = sampling rate in samples per second
float const frequency = desired beep frequency, Hz
float const PI = 3.1415926..
float const volume = desired beep volume
for( int index = 0; index < (int)(beep_duration * sample_rate); index++ )
{
sample[index] +=
sin( float(index) * 2.f * PI * sample_rate / frequency ) * volume;
}
</code></pre>
http://stackoverflow.com/questions/1559901/how-do-you-allocate-an-array-so-it-starts-at-certain-place-in-memory/1559959#15599590Answer by moonshadow for How do you allocate an array so it starts at certain place in memory?moonshadow2009-10-13T12:41:57Z2009-10-13T12:41:57Z<p>What assembler you are using matters because the syntax you are asking for is not part of the MIPS instruction set, it is assembler directives, and thus assembler specific.</p>
<p>From the <a href="http://pages.cs.wisc.edu/~larus/spim.html" rel="nofollow">SPIM documentation</a>: </p>
<p><strong>.data <addr></strong>: Subsequent items are stored in the data segment. If the optional argument addr is present, subsequent items are stored starting at address addr.</p>
<p><strong>.space n</strong> Allocate n bytes of space in the current segment (which must be the data segment in SPIM).</p>
<p>Thus, </p>
<pre><code> .data 5000
array:
.space 400
</code></pre>
<p>should do what you want.</p>
http://stackoverflow.com/questions/1503006/unresolved-external-mystery/1503023#15030231Answer by moonshadow for unresolved external mysterymoonshadow2009-10-01T10:00:22Z2009-10-01T10:19:11Z<p>Since you've declared the function __forceinline, you need to make sure the definition - not just the declaration - is visible everywhere the function is called.</p>
http://stackoverflow.com/questions/1476128/can-someone-explain-this-bat-code/1476164#14761641Answer by moonshadow for Can someone explain this bat code?moonshadow2009-09-25T08:48:22Z2009-09-25T08:48:22Z<p>%~ni expands to just the filename part of i</p>
<p>!n:~0,-4! expands to all but the last four characters of n</p>
<p>In general, <code>help for</code> at the command prompt will give an overview of the multitude of ways <code>for</code> can expand variables these days.</p>
http://stackoverflow.com/questions/1809602/thermometer-using-ds1620-ic-and-arm-microcontrollerComment by moonshadow on Thermometer using DS1620 IC and arm microcontrollermoonshadow2009-11-27T16:22:32Z2009-11-27T16:22:32ZWhat do you have so far?http://stackoverflow.com/questions/1612451/executing-external-program-via-system-does-not-run-properlyComment by moonshadow on Executing external program via system() does not run properlymoonshadow2009-10-23T09:58:57Z2009-10-23T09:58:57ZTried specifying the full path to the program in the system() call?http://stackoverflow.com/questions/1612170/rogue-processess-in-linuxComment by moonshadow on Rogue processess in linuxmoonshadow2009-10-23T08:57:23Z2009-10-23T08:57:23ZBetter asked on serverfault?http://stackoverflow.com/questions/1605899/is-it-possible-to-destroy-loaded-javascript-including-function-local-variableComment by moonshadow on Is it possible to destroy loaded JavaScript, including function & local variable?moonshadow2009-10-22T09:03:28Z2009-10-22T09:03:28ZWhy do you think you need to?http://stackoverflow.com/questions/1601184/linux-based-submission-script-for-cs-student-source-codeComment by moonshadow on linux based submission script for CS student source codemoonshadow2009-10-21T14:30:44Z2009-10-21T14:30:44Ztar + mail ;) and maybe automatic untar at the receiving end if you want to be fancyhttp://stackoverflow.com/questions/1574911/single-dash-phone-number-regex-validation/1574964#1574964Comment by moonshadow on Single dash phone number - regex validationmoonshadow2009-10-15T20:56:34Z2009-10-15T20:56:34ZThis won't match the number which is just a single digit (admittedly unlikely, but the iulian's spec permits it): +? makes the + non greedy, which I'm guessing is not what you intended.http://stackoverflow.com/questions/1574911/single-dash-phone-number-regex-validation/1574925#1574925Comment by moonshadow on Single dash phone number - regex validationmoonshadow2009-10-15T20:54:21Z2009-10-15T20:54:21Z@CMS: probably true, although iulianchira may be looking to incorporate this in a larger regexp. Tweaked answer.http://stackoverflow.com/questions/1574086/how-to-hunt-a-heisenbugComment by moonshadow on How to hunt a Heisenbugmoonshadow2009-10-15T18:19:20Z2009-10-15T18:19:20ZSee also: <a href="http://stackoverflow.com/questions/132116/heisenbug-winapi-program-crashes-on-some-computers" rel="nofollow" title="heisenbug winapi program crashes on some computers">stackoverflow.com/questions/132116/…</a>http://stackoverflow.com/questions/1572712/way-to-become-a-good-programmerComment by moonshadow on way to become a good programmermoonshadow2009-10-15T14:30:53Z2009-10-15T14:30:53ZPractice and code reviews.http://stackoverflow.com/questions/1572290/fastest-way-to-scan-for-bit-pattern-in-a-stream-of-bits/1572621#1572621Comment by moonshadow on Fastest way to scan for bit pattern in a stream of bitsmoonshadow2009-10-15T14:23:25Z2009-10-15T14:23:25Z@reinier: d'oh! Fixed.http://stackoverflow.com/questions/1561433/adding-audible-ticks-to-a-waveform-for-onset-detection-debugging/1561481#1561481Comment by moonshadow on adding "audible ticks" to a waveform for onset detection debuggingmoonshadow2009-10-14T08:40:27Z2009-10-14T08:40:27Z(1) a floating point number is a mantissa and a period followed by an optional fractional part (<a href="http://msdn.microsoft.com/en-us/library/tfh6f0w2(VS.71).aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>); so 2. would also be valid syntax but would yield a double. (2) since the purpose of this is debugging, whichever makes it easier for you to tell by ear when your algorithm is broken is the "more correct" ;)http://stackoverflow.com/questions/1559901/how-do-you-allocate-an-array-so-it-starts-at-certain-place-in-memoryComment by moonshadow on How do you allocate an array so it starts at certain place in memory?moonshadow2009-10-13T12:30:55Z2009-10-13T12:30:55ZWhat assembler software are you using?http://stackoverflow.com/questions/1503006/unresolved-external-mystery/1503023#1503023Comment by moonshadow on unresolved external mysterymoonshadow2009-10-01T10:27:18Z2009-10-01T10:27:18Z@Neil: yup. Except that makes the header less readable, so one might prefer to place the definitions of inline functions in a separate file and #include that at the bottom of the header after all the declarations.http://stackoverflow.com/questions/1503006/unresolved-external-mystery/1503023#1503023Comment by moonshadow on unresolved external mysterymoonshadow2009-10-01T10:09:34Z2009-10-01T10:09:34ZNot just the prototype, the body has to be visible too. With __forceinline, you're telling the compiler to slap the body verbatim into the generated code wherever the function is called, but if it can't see the body it can't do that, so it generates a call; but because you've used __forceinline, code for the body is never separately generated and so the target of the call cannot be resolved and you get a link error.http://stackoverflow.com/questions/1445025/what-is-the-advantage-of-a-do-whilefalse/1445053#1445053Comment by moonshadow on What is the advantage of a do-while(false)?moonshadow2009-09-18T14:56:10Z2009-09-18T14:56:10ZWow - it's a Java-style goto! (but it's begging to be a function with a conditional return instead...)