James Hopkin

4,314
Reputation
306 views

Registered User

Name James Hopkin
Member for 1 year
Seen Nov 24 at 11:45
Website
Location UK
Age 34
I'm a games programmer, working in C++, C# and Python.
Sep
17
awarded  Yearling
Sep
14
comment Why does std::stack use std::deque by default?
Thanks - missed this comment originally
Sep
14
revised Why does std::stack use std::deque by default?
Fixed typo
Sep
14
comment How to detect whether there is a specific member variable in class?
Thanks - got it now. Trying to compile 'void f(int n=0); void f(...); void test() { f(); }' proves your point pretty quickly! IIUC, the code in my answer should fail to compile due to the first call being ambiguous (and indeed it does on Comeau).
Sep
3
accepted C++ Partial Specialization ( Function Pointers )
Jul
15
comment Is there any direct way to do what pin_ptr does?
Thanks, I'll give that a go when I get a chance.
Jul
14
comment C++: Call destructor and then constructor (resetting an object)
+1: Good point about exception safety
Jul
14
comment Name resolution in templates
By 'hard to implement' btw, I'm thinking that the compiler has to keep track of all the fs that were defined until g's definition point so that it can pick the right one when it's instantiated with a built-in type.
Jul
14
comment Name resolution in templates
That's true, but I think it's an inconsistency that doesn't buy very much. I can't think of any sane examples where you'd overload an existing template function for a built-in type.
Jul
14
revised Should I prefer pointers or references in member data?
Added missing word
Jul
14
comment Name resolution in templates
If I've read the DR correctly, it seems they've gone for a 'quick fix' - make the example fit the wording - but actually the behaviour is inconsistent, and I'd guess hard to implement.
Jul
14
comment Name resolution in templates
Excellent - I hadn't read that defect report. It's a little more subtle than I thought.
Jul
14
comment Name resolution in templates
@litb: I should have been more specific about which bit of the article I was talking about (I didn't read it all in detail). Amended my answer now.
Jul
14
revised Name resolution in templates
added 35 characters in body
Jul
8
answered Name resolution in templates
Jul
7
answered Is returning a std::list costly?
Jul
6
revised Preventing invoking C types from Python
Attempted to get type instantiation terminology correct.
Jul
6
comment Preventing invoking C types from Python
I'm going to give this a try. +1 for now - I'll acccept the answer when I've given it a test.
Jul
6
comment Preventing invoking C types from Python
Just to slightly explain further: really it's just a case of an type that doesn't make sense to be invoked from Python, since it needs resources only the C library can provide. Currently my code will crash if an uninitialised instance's method is called. One option I have is to keep an 'initialised' member, and raise an exception in every method if it's false. I'm looking for alternatives, partly to get the earliest warning to the user.
Jul
6
comment Preventing invoking C types from Python
I wouldn't call having my library crash the interpreter 'bulletproof' :-)
Jul
4
revised Preventing invoking C types from Python
Fixed question to match title
Jul
3
comment Preventing invoking C types from Python
@Lennart: Agreed. Perhaps my tp_init exception is enough. I'm curious if there's a more bulletproof way. I fully expected to receive the answer: 'don't do it' ;-).
Jul
3
revised Preventing invoking C types from Python
Added reasoning
Jul
3
comment Preventing invoking C types from Python
I'm not sure what you mean by not exporting the type. I want the type to be usable, just only created from C.
Jul
3
asked Preventing invoking C types from Python
Jul
2
accepted Memory leak (sort of) with a static std::vector
Jul
2
answered HgTortoise in Vista 64-bit not showing the context menu
Jun
30
revised How can I make a list of files, modification dates and paths?
Fixed title; edited title
Jun
30
answered How can I make a list of files, modification dates and paths?
Jun
30
comment How can I make a list of files, modification dates and paths?
None of those links answer the modification time part of the question.
Jun
24
comment generate mpl::vector from fusion::vector
Do you need to calculate the type of a fusion::vector with the same types as an mpl::vector (mpl::vectors only have types, not values), or did you mean mpl::vector_c?
Jun
23
answered template-ing a for loop in C++?
Jun
23
comment Should I return std::strings?
+1: You're correct. Without the RVO, it would have to allocate two buffers and copy between them.
Jun
23
answered template-ing a for loop in C++?
Jun
23
revised Threading issues in C++
Fixed typos
Jun
22
comment C++: Will an ‘empty’ destructor do the same thing as the generated destructor?
Also, A().a == 0 is only true for statics. A local variable of type A will be uninitialised.
Jun
22
comment C++: Will an ‘empty’ destructor do the same thing as the generated destructor?
Your first example is a little strange. The B you've written can't be used at all (new-ing one would be an error, any cast to one would be undefined behaviour, since it's non-POD).
Jun
19
answered Problems implementing the “Observer” pattern
Jun
19
comment Returning struct from a function, how can I check that it is initialized?
+1: Small point: the 0 isn't needed in the initialisers: routing_entry entry = {}; is fine.
Jun
19
revised Returning struct from a function, how can I check that it is initialized?
Small grammar and code fix
Jun
19
revised Generate from generators
Fixed spelling
Jun
19
revised Is there any direct way to do what pin_ptr does?
added 9 characters in body
Jun
19
revised Is there any direct way to do what pin_ptr does?
Shameless attention grabbing by adding C++ tag
Jun
19
asked Is there any direct way to do what pin_ptr does?
Jun
19
comment Combining C and Python functions in a module
csv.py is a really helpful example
Jun
19
comment Combining C and Python functions in a module
Thanks: I was interested to see how this could be done, as well as the more common way.
Jun
18
asked Combining C and Python functions in a module
Jun
18
comment see previous definition of ‘some symbol’
+1: Simple but true :-) Searching the preprocessor output of the .cpp that's failing, for example.
Jun
18
comment In Python, how do I index a list with another list?
(using map and a lambda is even slower - to be expected, since it calls a function for each iteration)
Jun
18
comment In Python, how do I index a list with another list?
A quick timing test (no pysco or anything, so make of it what you will) showed the list comprehension 2.5x faster than the loop (1000 elements, repeated 10000 times).