User Drealmer - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T18:14:07Zhttp://stackoverflow.com/feeds/user/12291http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/443408/ilk-target-directory0ilk target directoryDrealmer2009-01-14T15:43:04Z2009-11-03T08:46:04Z
<p>If incremental linking is enabled, Visual C++ generates the *.ilk file in $(TargetDir), can I override this behavior and redirect it to another directory? (without using a post-build step)</p>
http://stackoverflow.com/questions/75538/hidden-features-of-c/75709#757098Answer by Drealmer for Hidden Features of C++?Drealmer2008-09-16T18:57:34Z2009-09-09T23:46:03Z<p>I found this blog to be an amazing resource about the arcanes of C++ : <a href="http://cpptruths.blogspot.com/" rel="nofollow">C++ Truths</a>.</p>
http://stackoverflow.com/questions/1343190/c-stack-and-scope4C++ stack and scopeDrealmer2009-08-27T19:07:34Z2009-08-28T14:33:43Z
<p>I tried this code on Visual C++ 2008 and it shows that A and B don't have the same address.</p>
<pre><code>int main()
{
{
int A;
printf("%p\n", &A);
}
int B;
printf("%p\n", &B);
}
</code></pre>
<p>But since A doesn't exist anymore when B gets defined, it seems to me that the same stack location could be reused...</p>
<p>I don't understand why the compiler doesn't seem to do what looks like a very simple optimization (which could matter in the context of larger variables and recursive functions for example). And it doesn't seem like reusing it would be heavier on the CPU nor the memory. Does anyone have an explanation for this?</p>
<p>I guess the answer is along the lines of "because it's much more complex than it looks", but honestly I have no idea.</p>
<p><strong>edit</strong>: Some precisions regarding the answers and comments below.</p>
<p>The problem with this code is that each time this function is called, the stack grows "one integer too much". Of course this is no problem in the example, but consider large variables and recursive calls and you have a stack overflow that could be easily avoided.</p>
<p>What I suggest is a memory optimization, but I don't see how it would damage performance.</p>
<p>And by the way, this happens in <strong>release</strong> builds, will all optimizations on.</p>
http://stackoverflow.com/questions/760578/const-reference-to-temporary3Const reference to temporaryDrealmer2009-04-17T14:12:50Z2009-08-09T09:03:40Z
<p>After reading <a href="http://herbsutter.wordpress.com/2008/01/01/gotw-88-a-candidate-for-the-most-important-const/" rel="nofollow">this article</a> on Herb Sutter's blog, I experimented a bit and ran into something that puzzles me. I am using Visual C++ 2005, but I would be surprised if this was implementation dependent.</p>
<p>Here is my code:</p>
<pre><code>#include <iostream>
using namespace std;
struct Base {
//Base() {}
~Base() { cout << "~Base()" << endl; }
};
int main()
{
const Base & f = Base();
}
</code></pre>
<p>When run, it displays "<code>~Base()</code>" <strong>twice</strong>... But if I un-comment the constructor, it displays it only <strong>once</strong>!</p>
<p>Does anyone have an explanation for this?</p>
http://stackoverflow.com/questions/1226206/is-there-a-reason-to-not-use-boost/1226793#12267934Answer by Drealmer for Is there a reason to not use Boost?Drealmer2009-08-04T10:43:43Z2009-08-04T10:43:43Z<ul>
<li>It's already hard to find people who understand the STL and can use it properly, people with boost knowledge are even harder to find. Recruiting might get complicated and getting new hires up to speed might take more time.</li>
<li>For some people boost might look like a silver bullet, you might end up with unnecessary complexity.</li>
<li>If you work in a cross-platform environment, you might discover various quirks of your compilers that turn template-heavy code into a nightmare.</li>
</ul>
http://stackoverflow.com/questions/93260/a-free-tool-to-check-c-c-source-code-against-a-set-of-coding-standards14A free tool to check C/C++ source code against a set of coding standards?Drealmer2008-09-18T14:50:24Z2009-07-28T10:11:57Z
<p>It looks quite easy to find such a tool for Java (<a href="http://checkstyle.sourceforge.net/" rel="nofollow">Checkstyle</a>, <a href="http://jcsc.sourceforge.net/" rel="nofollow">JCSC</a>), but I can't seem to find one for C/C++. I am not looking for a lint-like static code analyzer, I only would like to check against coding standards like variable naming, capitalization, spacing, identation, bracket placement, and so on.</p>
http://stackoverflow.com/questions/1053253/can-lua-be-used-for-application-development/1078407#10784072Answer by Drealmer for Can Lua be used for application development?Drealmer2009-07-03T08:38:51Z2009-07-03T08:38:51Z<p>You will find a list here of various projects using Lua, one of the most relevant is probably Adobe Photoshop Lightroom, of which 40% is written in Lua: <a href="http://lua-users.org/wiki/LuaUses" rel="nofollow">Lua Uses</a></p>
http://stackoverflow.com/questions/806348/prevent-linker-from-removing-globals3Prevent linker from removing globalsDrealmer2009-04-30T10:44:25Z2009-04-30T20:37:09Z
<p>I am using static global variables constructors as a trick to conveniently register functions, the idea goes something like this:</p>
<pre><code>typedef int (*FuncPtr)(int);
struct RegHelper
{
RegHelper(const char * Name, FuncPtr Func)
{
Register(Name, Func);
}
}
#define REGISTER(func) RegHelper gRegHelper_ ## func (#func, func);
</code></pre>
<p>Now I can register functions this way (I use it to implement some kind of reflection):</p>
<pre><code>int Foo(int a)
{
return a * 123;
}
REGISTER(Foo)
int Bar(int a)
{
return a * 456;
}
REGISTER(Bar)
</code></pre>
<p>The problem is that if I use this in a static library, sometimes the linker detects that the compilation unit is not used, and it drops the whole thing. So the global variables are not constructed, and the functions are not registered...</p>
<p>My question is: What can I do to work around this? Calling dummy functions in each compilation unit during initialization seems to trigger the construction of the global variables, but that doesn't feel very safe. Any other suggestion?</p>
http://stackoverflow.com/questions/696985/several-definitions-of-the-same-class1several definitions of the same classDrealmer2009-03-30T12:26:43Z2009-03-30T13:33:29Z
<p>Playing around with MSVC++ 2005, I noticed that if the same class is defined several times, the program still happily links, even at the highest warning level. I find it surprising, how comes this is not an error?</p>
<p>module_a.cpp:</p>
<pre><code>#include <iostream>
struct Foo {
const char * Bar() { return "MODULE_A"; }
};
void TestA() { std::cout << "TestA: " << Foo().Bar() << std::endl; }
</code></pre>
<p>module_b.cpp:</p>
<pre><code>#include <iostream>
struct Foo {
const char * Bar() { return "MODULE_B"; }
};
void TestB() { std::cout << "TestB: " << Foo().Bar() << std::endl; }
</code></pre>
<p>main.cpp:</p>
<pre><code>void TestA();
void TestB();
int main() {
TestA();
TestB();
}
</code></pre>
<p>And the output is:</p>
<pre><code>TestA: MODULE_A
TestB: MODULE_A
</code></pre>
http://stackoverflow.com/questions/143234/lua-operator-as-print0Lua = operator as printDrealmer2008-09-27T08:33:07Z2009-01-02T17:17:00Z
<p>In Lua, using the = operator without an l-value seems to be equivalent to a print(r-value), here are a few examples run in the Lua standalone interpreter:</p>
<pre><code>> = a
nil
> a = 8
> = a
8
> = 'hello'
hello
> = print
function: 003657C8
</code></pre>
<p>And so on...</p>
<p>My question is : where can I find a detailed description of this use for the = operator? How does it work? Is it by implying a special default l-value? I guess the root of my problem is that I have no clue what to type in Google to find info about it :-)</p>
<p><strong>edit</strong>:</p>
<p>Thanks for the answers, you are right it's a feature of the interpreter. Silly question, for I don't know which reason I completely overlooked the obvious. I should avoid posting before the morning coffee :-) For completeness, here is the code dealing with this in the interpreter:</p>
<pre><code>while ((status = loadline(L)) != -1) {
if (status == 0) status = docall(L, 0, 0);
report(L, status);
if (status == 0 && lua_gettop(L) > 0) { /* any result to print? */
lua_getglobal(L, "print");
lua_insert(L, 1);
if (lua_pcall(L, lua_gettop(L)-1, 0, 0) != 0)
l_message(progname, lua_pushfstring(L,
"error calling " LUA_QL("print") " (%s)",
lua_tostring(L, -1)));
}
}
</code></pre>
<p><strong>edit2</strong>:</p>
<p>To be really complete, the whole trick about pushing values on the stack is in the "pushline" function:</p>
<pre><code>if (firstline && b[0] == '=') /* first line starts with `=' ? */
lua_pushfstring(L, "return %s", b+1); /* change it to `return' */
</code></pre>
http://stackoverflow.com/questions/389989/nolock-crt-functions1_nolock CRT functionsDrealmer2008-12-23T20:24:22Z2008-12-23T20:39:09Z
<p>I have recently discovered the existence of <a href="http://msdn.microsoft.com/en-us/library/ms235386.aspx" rel="nofollow">_nolock functions</a>, and I am surprised by how little info I can find on these. It says it increases performance, but I can't find any benchmark. It also says they can be used in a multi-threaded program if the program does its own locking, but what has to be locked? Should all CRT calls go through the same lock? One per function? One per group of functions? If so, what defines groups?</p>
<p>Could you point me to some detailed information about these functions? Thanks :-)</p>
http://stackoverflow.com/questions/239496/monkey-testing-software-for-windows-apps1monkey testing software for windows appsDrealmer2008-10-27T10:18:08Z2008-12-17T11:02:38Z
<p>I would like to stress test a win32 application by sending a lot of random keystrokes to it, and I wonder if anyone could point me to some software I could use. Ideally, I should be able to specify which keystrokes can be sent, and control rate (random min/max).</p>
http://stackoverflow.com/questions/325384/codewarrior-xml-project-files-schema1CodeWarrior xml project files schema?Drealmer2008-11-28T09:46:31Z2008-12-04T15:31:49Z
<p>I am looking for a reference describing precisely the XML project file format used by CodeWarrior. I managed to find XSD files for recent versions of Visual C++ (<a href="http://msdn.microsoft.com/en-us/library/y4sy8216.aspx" rel="nofollow">here</a>), could anyone point me to some equivalent for CodeWarrior?</p>
http://stackoverflow.com/questions/132397/get-back-the-output-of-os-execute-in-lua2Get back the output of os.execute in LuaDrealmer2008-09-25T09:53:27Z2008-11-28T21:19:22Z
<p>When I do an "os.execute" in Lua, a console quickly pops up, executes the command, then closes down. But is there some way of getting back the console output only using the standard Lua libraries?</p>
http://stackoverflow.com/questions/167002/perforce-repository-monitor-for-windows0Perforce repository monitor for WindowsDrealmer2008-10-03T13:56:34Z2008-10-03T23:10:38Z
<p>I used to work with Subversion and a system tray tool (<a href="http://svnnotifier.tigris.org/" rel="nofollow">SVN Notifier</a>) to monitor the repository so I would immediately see when my local copy was not up-to-date anymore, and I am wondering if some equivalent was available for Perforce (on Windows).</p>
http://stackoverflow.com/questions/151974/c-blogs-that-you-regularly-follow/152148#1521484Answer by Drealmer for C++ blogs that you regularly follow?Drealmer2008-09-30T07:56:02Z2008-09-30T07:56:02Z<p><a href="http://attractivechaos.wordpress.com/" rel="nofollow">Attractive Chaos</a></p>
http://stackoverflow.com/questions/146704/is-version-the-only-global-variable-left-in-lua-5-11Is _VERSION the only global variable left in Lua 5.1?Drealmer2008-09-28T20:44:28Z2008-09-28T21:15:06Z
<p>Puzzled by the Lua 5.0 documentation references to things like _LOADED, LUA_PATH, _ALERT and so on (that I could not use in Lua 5.1), I discovered all of those have been removed and the functionality put elsewhere. Am I right in thinking that the only one global variable left in Lua 5.1 is _VERSION?</p>
http://stackoverflow.com/questions/138600/initializing-a-static-stdmapint-int-in-c/138618#1386188Answer by Drealmer for Initializing a static std::map<int, int> in C++Drealmer2008-09-26T10:19:19Z2008-09-26T10:19:19Z<p>I would wrap the map inside a static object, and put the map initialisation code in the constructor of this object, this way you are sure the map is created before the initialisation code is executed.</p>
http://stackoverflow.com/questions/138543/searching-for-a-job-c-programmer-what-can-you-recommend/138566#1385664Answer by Drealmer for Searching for a job (C++ programmer): what can you recommend?Drealmer2008-09-26T10:03:33Z2008-09-26T10:03:33Z<p>I would recommend adding your profile to <a href="http://www.linkedin.com/" rel="nofollow">LinkedIn</a>, then look at the companies your direct and indirect contacts are working at. And send your resume, even if they don't seem to be looking for people, lots of companies do a very bad job at advertising their recruitment needs.</p>
http://stackoverflow.com/questions/119578/disabling-warnings-generated-via-crtsecurenodeprecate/120042#1200422Answer by Drealmer for Disabling Warnings generated via _CRT_SECURE_NO_DEPRECATEDrealmer2008-09-23T09:27:03Z2008-09-23T09:27:03Z<p>You can also use the <a href="http://msdn.microsoft.com/en-us/library/ms175759(VS.80).aspx" rel="nofollow">Secure Template Overloads</a>, they will help you replace the unsecure calls with secure ones anywhere it is possible to easily deduce buffer size (static arrays).</p>
<p>Just add the following:</p>
<pre><code>#define _CRT_SECURE_CPP_OVERLOAD_STANDARD_NAMES 1
</code></pre>
<p>Then fix the remaining warnings by hand, by using the _s functions.</p>
http://stackoverflow.com/questions/113906/which-gui-toolkit-would-you-use-for-a-touchscreen-interface0Which GUI toolkit would you use for a touchscreen interface?Drealmer2008-09-22T09:04:07Z2008-09-22T09:34:09Z
<p>The only experience I have so far with a touchscreen interface was one where everything was custom drawn, and I get the feeling it's not the most efficient way of doing it (even the most basic layout change is hell to make). I know plenty of GUI toolkits intended at keyboard & mouse interfaces, but can you advise something suited for touchscreens? Target platform is Windows, but cross-platform would be nice.</p>
http://stackoverflow.com/questions/112085/is-this-c-structure-initialization-trick-safe/112126#1121268Answer by Drealmer for Is this C++ structure initialization trick safe?Drealmer2008-09-21T20:56:34Z2008-09-21T20:56:34Z<p>Much better than a memset, you can use this little trick instead:</p>
<pre><code>MY_STRUCT foo = { 0 };
</code></pre>
<p>This will initialize all members to 0 (or their default value iirc), no need to specifiy a value for each.</p>
http://stackoverflow.com/questions/99479/visual-c-studio-application-configuration-incorrect/100310#1003101Answer by Drealmer for Visual C++/Studio: Application configuration incorrect?Drealmer2008-09-19T07:43:14Z2008-09-19T07:43:14Z<p>Chances are high that you miss the runtime libraries of Visual Studio (CRT amongst others), you can either get rid of those dependencies (link statically) or install the VC redist packages on the target computer.</p>
<p>Depending on the Visual C++ version you use, you have to install different packages :</p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=32BC1BEE-A3F9-4C13-9C99-220B62A191EE&displaylang=en" rel="nofollow">Visual C++ 2005</a></p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=200B2FD9-AE1A-4A14-984D-389C36F85647&displaylang=en" rel="nofollow">Visual C++ 2005 SP1</a></p>
<p><a href="http://www.microsoft.com/downloads/details.aspx?familyid=9B2DA534-3E03-4391-8A4D-074B9F2BC1BF&displaylang=en" rel="nofollow">Visual C++ 2008</a></p>
<p><strong>Warning</strong> : those packages only contain release versions of the libraries, if you want to be able to distribute debug builds of your application you'll have to take care of the required DLL yourself.</p>
http://stackoverflow.com/questions/93569/are-pod-types-always-aligned2Are POD types always aligned?Drealmer2008-09-18T15:27:16Z2008-09-18T16:26:47Z
<p>For example, if I declare a long variable, can I assume it will always be aligned on a "sizeof(long)" boundary? Microsoft Visual C++ online help says so, but is it standard behavior?</p>
<p>some more info:</p>
<p>a. It is possible to explicitely create a misaligned integer (*bar):</p>
<blockquote>
<p>char foo[5]</p>
<p>int * bar = (int *)(&foo[1]);</p>
</blockquote>
<p>b. Apparently, #pragma pack() only affects structures, classes, and unions.</p>
<p>c. MSVC documentation states that POD types are aligned to their respective sizes (but is it always or by default, and is it standard behavior, I don't know)</p>
http://stackoverflow.com/questions/83086/vs-2008-vs-vs-2008-express/83133#831331Answer by Drealmer for VS 2008 vs VS 2008 ExpressDrealmer2008-09-17T13:24:43Z2008-09-17T13:24:43Z<p>Here is a detailed list of available features on different editions of Visual Studio : <a href="http://msdn.microsoft.com/en-us/vs2008/products/cc149003.aspx" rel="nofollow">Product Comparison</a></p>
http://stackoverflow.com/questions/75213/scope-resolution-operator-without-a-scope/75249#752492Answer by Drealmer for scope resolution operator without a scopeDrealmer2008-09-16T18:09:27Z2008-09-16T18:09:27Z<p>When you already have a function named foo() in your local scope but you need to access the one in the global scope.</p>
http://stackoverflow.com/questions/75180/how-to-display-a-dynamically-allocated-array-in-the-visual-studio-debugger/75204#752042Answer by Drealmer for How to display a dynamically allocated array in the Visual Studio debugger?Drealmer2008-09-16T18:06:29Z2008-09-16T18:06:29Z<p>In a watch window, add a comma after the name of the array, and the amount of items you want to be displayed.</p>
http://stackoverflow.com/questions/74405/what-is-the-best-c-book-for-an-intermediate-to-expert-developer/75029#750292Answer by Drealmer for What is the best C++ book for an intermediate to expert developer?Drealmer2008-09-16T17:50:17Z2008-09-16T17:50:17Z<p>I think "C++ For Game Programmers" by Noel Llopis is an amazing book with a misleading title (besides the samples, it has little to do with games). The book not only explains how to use the language, but also how to use it efficiently, and why it has been designed this way, all this from a very pragmatic point of view. If you really want to get a deep understanding of what you are doing, you should definitely have a look at this book.</p>
http://stackoverflow.com/questions/73686/cout-prints-0-instead-of-0/73740#737402Answer by Drealmer for cout prints "-0" instead of "0"Drealmer2008-09-16T15:42:13Z2008-09-16T15:42:13Z<p>The IEEE 754 standard for floating point arithmetic makes a distinction between +0 and -0, this can be used when dealing with very small numbers rounded to zero where the sign still has an importance.</p>
http://stackoverflow.com/questions/32332/why-dont-the-stdfstream-classes-take-a-stdstring/73620#736201Answer by Drealmer for Why don't the std::fstream classes take a std::string?Drealmer2008-09-16T15:31:57Z2008-09-16T15:31:57Z<p>The stream IO library has been added to the standard C++ library before the STL. In order to not break backward compatibility, it has been decided to avoid modifying the IO library when the STL was added, even if that meant some issues like the one you raise.</p>
http://stackoverflow.com/questions/1343190/c-stack-and-scope/1343211#1343211Comment by Drealmer on C++ stack and scopeDrealmer2009-08-27T19:29:08Z2009-08-27T19:29:08ZI know the compiler is allowed to do it, but I still wonder why he does it :)http://stackoverflow.com/questions/806348/prevent-linker-from-removing-globals/806537#806537Comment by Drealmer on Prevent linker from removing globalsDrealmer2009-04-30T12:16:31Z2009-04-30T12:16:31ZThanks! That's not exactly the solution I am looking for, but that already helps a lot :)http://stackoverflow.com/questions/760578/const-reference-to-temporary/760593#760593Comment by Drealmer on Const reference to temporaryDrealmer2009-04-17T15:01:20Z2009-04-17T15:01:20ZISO/IEC 14882 8.5.3 paragraph 5http://stackoverflow.com/questions/760578/const-reference-to-temporary/760593#760593Comment by Drealmer on Const reference to temporaryDrealmer2009-04-17T14:20:44Z2009-04-17T14:20:44ZAmazing answer, thanks a lot Sir :)http://stackoverflow.com/questions/239496/monkey-testing-software-for-windows-appsComment by Drealmer on monkey testing software for windows appsDrealmer2008-10-27T10:51:32Z2008-10-27T10:51:32ZMrValdez: ok, back :)http://stackoverflow.com/questions/239496/monkey-testing-software-for-windows-apps/239508#239508Comment by Drealmer on monkey testing software for windows appsDrealmer2008-10-27T10:41:22Z2008-10-27T10:41:22ZThanks but I am more looking for a tool to do this... that's why I didn't specify a language in my question. And besides that, why did you remove the "monkey" keyword on my post? this is the name of the technique: <a href="http://en.wikipedia.org/wiki/Monkey_test" rel="nofollow">en.wikipedia.org/wiki/Monkey_test</a>http://stackoverflow.com/questions/239496/monkey-testing-software-for-windows-appsComment by Drealmer on monkey testing software for windows appsDrealmer2008-10-27T10:22:09Z2008-10-27T10:22:09Zyeah, I should rephrase that indeedhttp://stackoverflow.com/questions/120033/any-workarounds-for-non-static-member-array-initialization/120129#120129Comment by Drealmer on Any workarounds for non-static member array initialization?Drealmer2008-09-23T09:58:07Z2008-09-23T09:58:07ZStill the root of the problem remains, you need a default constructor for the array element type.http://stackoverflow.com/questions/120033/any-workarounds-for-non-static-member-array-initialization/120089#120089Comment by Drealmer on Any workarounds for non-static member array initialization?Drealmer2008-09-23T09:48:16Z2008-09-23T09:48:16ZIt won't work with an array of a type with no default constructor, but nice trick anyway.http://stackoverflow.com/questions/120033/any-workarounds-for-non-static-member-array-initialization/120084#120084Comment by Drealmer on Any workarounds for non-static member array initialization?Drealmer2008-09-23T09:45:12Z2008-09-23T09:45:12ZDon't forget to add "#include <new>" for placement new :)http://stackoverflow.com/questions/101439/the-most-efficient-way-to-implement-an-integer-based-power-function-powint-int/101473#101473Comment by Drealmer on The most efficient way to implement an integer based power function pow(int, int)Drealmer2008-09-19T13:02:49Z2008-09-19T13:02:49ZBase 10? Uh no, it's base 2, unless you meant 10 in binary :)http://stackoverflow.com/questions/101439/the-most-efficient-way-to-implement-an-integer-based-power-function-powint-int/101473#101473Comment by Drealmer on The most efficient way to implement an integer based power function pow(int, int)Drealmer2008-09-19T12:55:24Z2008-09-19T12:55:24Z*= won't work either, exponent can be nullhttp://stackoverflow.com/questions/101439/the-most-efficient-way-to-implement-an-integer-based-power-function-powint-int/101473#101473Comment by Drealmer on The most efficient way to implement an integer based power function pow(int, int)Drealmer2008-09-19T12:50:32Z2008-09-19T12:50:32ZAn IEEE float is base x 2 ^ exp, changing the exponent value won't lead to anything else than a multiplication by a power of two, and chances are high it will denormalize the float ... your solution is wrong IMHOhttp://stackoverflow.com/questions/101439/the-most-efficient-way-to-implement-an-integer-based-power-function-powint-intComment by Drealmer on The most efficient way to implement an integer based power function pow(int, int)Drealmer2008-09-19T12:47:05Z2008-09-19T12:47:05ZI think that 2^3 = 8http://stackoverflow.com/questions/101439/the-most-efficient-way-to-implement-an-integer-based-power-function-powint-int/101450#101450Comment by Drealmer on The most efficient way to implement an integer based power function pow(int, int)Drealmer2008-09-19T12:34:06Z2008-09-19T12:34:06Zyeah but this one works with doubles