< gamersg> jonasschnelli: u there?
< gamersg> sipa: u there?
< sipa> yes
< gamersg> regarding laanjw's suggestion, https://github.com/bitcoin/bitcoin/pull/7613
< gamersg> is it ok if i do a getCommands(std::vector& list)
< gamersg> i prefer it to returning a vector, more efficient
< sipa> we'll switch to C++11 soon, in which you can use move semantics for that
< sipa> so i don't really care
< gamersg> move semantics will apply automatically i believe, so the efficiency gain would be automatic, amirite
< sipa> in cases where it applies automatically, i think copy elision would already apply right now as well
< gamersg> sipa: copy ellision?
< gamersg> u mean compiler optimisation?
< sipa> yes
< sipa> if you have a function f() { return some_vector; } ... vector v = f();
< sipa> then C++ semantics specify that 2 copies occur (once to copy some_vector to the return value, and one to assign the return value to v
< sipa> however, the compiler is allowed to not issue those copy operations and bypass the assignments
< sipa> which in practice always happens
< sipa> i dislike it because it's non obvious where that applies
< sipa> move semantics are cleaner
< gamersg> ic, alrite then ill stick to returning a vector
< GitHub57> [bitcoin] sipa pushed 2 new commits to master: https://github.com/bitcoin/bitcoin/compare/7f966713a413...9f33dba05c01
< GitHub57> bitcoin/master 086da92 Suhas Daftuar: Add tags to mempool's mapTx indices
< GitHub57> bitcoin/master 9f33dba Pieter Wuille: Merge #7539: Add tags to mempool's mapTx indices...
< GitHub100> [bitcoin] sipa closed pull request #7539: Add tags to mempool's mapTx indices (master...use-tags) https://github.com/bitcoin/bitcoin/pull/7539
< GitHub179> [bitcoin] pstratem closed pull request #7629: Order CTxMemPool::queryHashes result by feerate including descendents. (master...2016-03-01-queryhashes) https://github.com/bitcoin/bitcoin/pull/7629
< heath> slkdfjlk