1
vote
Memory management in C++
If you are going to manage your memory manually, you have two cases:
I created the object (perhaps indirectly, by calling a function that allocates a new object), I use it (or a funct …
0
votes
Do you consider this technique “BAD”?
I don't see why not to use that, but I would do it like this:
#define BEGIN_BLOCK do{
#define SKIP_BLOCK break;
#define END_BLOCK }while(false);
BEGIN_BLOCK
bool is …
1
vote
Memory allocation on Windows C code
You could make a wrapper and leave the option to change the implementation details. You could even compare both options with your code and then decide.
…
0
votes
Forcing something to be destructed last in C++
If you can modify the interface of the controllers and the supervisor's destruction code, you can force the controllers to detach from the supervisor when the supervisor i …
-3
votes
C++ Mystery
This is related to why ++++i would be valid.
++i is returning a reference, not a value.
For the lawyers:
5.3.2 Increment and decrement [expr.pre. …
1
vote
Best practices for writing the parser
Choose the right kind of parser, sometimes a Recursive Descendant will be enough, sometimes you should use an LR parser (also, there are many types of LR parsers).
If you have a comp …
