| bio | website | |
|---|---|---|
| location | United Kingdom | |
| age | ||
| visits | member for | 4 years, 8 months |
| seen | 18 mins ago | |
| stats | profile views | 9,108 |
I am a programmer. My principal language is C++. I've also done commercial work in Java, C, Perl, Python, Javascript and APL. I've also been known to dabble in python, lisp, Haskell, assembler (ARM, x86, amd64) and probably a few other languages that haven't left as big a mark.
I'm a member of the ACCU, and I spoke at accu2012 in April.
|
1d |
comment |
What does <- mean in C++?<- is perfectly good C++ slideshare.net/phil_nash/c-extension-methods-18678294 |
|
1d |
comment |
Git exit vim without commiting OK, but the whole question is about the 'amend' case only, so I think it's a little misleading to mention it at all; at least without saying something like "if you're not amending..." first. |
|
1d |
comment |
Git exit vim without commiting +1 for :cq, but -1 for :q! - this isn't correct, it just keeps the pre-amended commit message and applies any actual staged changes. |
|
2d |
comment |
How do I handle thows/exceptions in a container class safely? @Pixelchemist: Yes, I don't move construct as it's easier to keep the strong exception safety guarantee. I could do, if I reordered the construction of new objects and the 'move' of the existing objects. Then, after the construction of the new objects, all operations would be nothrow (if move for T was no throw) and the strong guarantee could be maintained. |
|
2d |
revised |
How do I handle thows/exceptions in a container class safely? added 819 characters in body |
|
2d |
answered | How do I handle thows/exceptions in a container class safely? |
|
2d |
comment |
Confuse about memset and memcopy Also, don't cast the return value of malloc. It hides the warning that says you haven't included <stdlib.h>. |
|
May 15 |
answered | Changing a vector into an array makes my program slower |
|
May 15 |
comment |
Changing a vector into an array makes my program slower It's quite easy for lines to get conflated in optimized builds, are you sure that it's not this that is the actual bottleneck: col.swap( prevCol );. You should try having std::array<...> *pCol, *pPrevCol; pointing to the two real arrays, changing all of the accesses via pointers and swapping the pointers... or doing the outer loop two iterations at a time and manually swapping col and prevCol in the second half (you'll need an extra test and break between the two halves and the return statement will need a conditional of some sort). |
|
May 15 |
answered | Operator- overloading (same parameters, different return type) |
|
May 14 |
awarded | Good Answer |
|
May 14 |
awarded | Enlightened |
|
May 12 |
awarded | Nice Answer |
|
May 10 |
awarded | Nice Answer |
|
May 10 |
comment |
Do class members need to be prefixed with `class::` in class definitions?:: can be used with non-static data and function members and can be used to disable virtual dispatch. |
|
May 10 |
comment |
Where do the elements removed by std::remove_if go? I haven't even thought about what "happened to the data". The values of the shared pointer are not part of the contract so I simply don't care about them. It is possible that the members of the range are moved and this results in empty shared pointers, or possibly an "old fashioned" in-place destruct and copy construct instead of assignment. You should be able to find the source code of std::remove_if on your system (as it is a template) to verify this. |
|
May 10 |
answered | Where do the elements removed by std::remove_if go? |
|
May 9 |
comment |
Force deriving from a class virtually With virtual inheritance you will get diamond inheritance (with its problems); without virtual inheritance you won't have diamond inheritance problems, you will have duplicated base classes instead (with that set of problems instead). |
|
May 9 |
revised |
g++ -xc option not working? edited tags |
|
May 9 |
comment |
g++ -xc option not working?-xc looks to be working as designed, what did you expect it to do? |