User profile: ElusiveTau

User info
User name:ElusiveTau
History
Joined:
Number of posts:159
Latest posts:

How to compare int class template value?
2. That's a good point. Only up to MAX_CSTR_SIZE-1 bytes will be copied. 3. Understood. Rule of 3....

How to compare int class template value?
I'm aware I should use std::string but this is question is about using template specialization a spe...

Template errors creating a map<int,std::thread> using map::emplace
Thanks Peter. That was it. 1. std::ref(coutMutex) was necessary, for the reason you stated. 2. "t"...

Template errors creating a map<int,std::thread> using map::emplace
I created a class to try out std::lock_guard. The first function, [code]UnsafeExample[/code] compi...

How to initialize base class member with subclass member?
baseClassBuff is unnecessary. I can just reuse [code]MyThreadClass.Name[/code].