by admin Welcome to this board! |
|
[no replies] |
by CactusBack Euler Angle Compression |
|
[2 replies] Last: It looks to me like the rotations are simply discarding a coordinate f... (by Duthomhas) |
by Laurent7601 Cylic inclusion and forward declaration and template issue. |
|
[3 replies] Last: For others interested, here was my original example now split into mul... (by Ganado) |
by Laurent7601 How to init this static var |
|
[2 replies] Last: Templates need to be defined in the header file (unless you add explic... (by Peter87) |
by Xaxazak discussion on std::ranges::iterator_t<T> being distinct from T::iterator (and same for begin) |
|
[4 replies] Last: [quote=Xaxazak]I recently spent an hour or so on a bug that came down ... (by TheIdeasMan) |
by Ganado Safer way to maintain struct initializations |
|
[5 replies] Last: Maybe you want to take a look at the "pimpl" (pointer to implementati... (by kigar64551) |
by Heyyo53 PNG File Reader (1,2) |
|
[38 replies] Last: Hmm... learning something new. According to cppreference.com it is on... (by Duthomhas) |
by kitfox How to create white noise random hashing function? |
|
[1 reply] : I think you can use any proper hash function to produce a (pseudo) "... (by kigar64551) |
by bistelA0005 Use C++ 20 with Embarcadero |
|
[4 replies] Last: The last recourse is the "other compiler options" where you can just l... (by salem c) |
Call of Templated Function w/ Explicit Template Argument Fails to Compile |
|
[1 reply] : The meaning of the name _T.aaa depends on the template parameter T ... (by mbozzi) |
by PhysicsIsFun scientific computing - optimize speed |
|
[16 replies] Last: Just leaving this here. https://en.wikipedia.org/wiki/Barnes%E2%80%93... (by salem c) |
by stonedviper why can't I use cout with without iostream |
|
[5 replies] Last: And then there is <iosfwd> (by keskiverto) |
by PhysicsIsFun Pybind11 slows my C++ code substantially |
|
[4 replies] Last: of course it can. you may need to hand wave at byte ordering if you g... (by jonnin) |
by leo2008 anagram using vector |
|
[2 replies] Last: If you go big (a large dictionary of words) you may want to move out t... (by jonnin) |
by JUANDENT Making a shared_ptr out of a stack object corrupts the heap!! |
|
[2 replies] Last: Note: std::make_shared<T>() creates a new heap-allocated instance of... (by kigar64551) |
by JamieAl Testing restart functionality in C/C++ |
|
[1 reply] : you will get more help if you put it in a repo where we can see the co... (by jonnin) |
by JUANDENT Need a data structure where I can map a string to a type |
|
[10 replies] Last: It's not necessary to use an enum. It was just a suggestion. (by Peter87) |
by Coubarrie Save to file with vector (dynamically) |
|
[11 replies] Last: i outside the loop is not a c++ error. It is a questionable programmi... (by jonnin) |
by JUANDENT what does T = 0 mean in a template parameter? |
|
[4 replies] Last: Indeed: "initialized with value 0" limit what type the T can be? (by JUANDENT) |
by LsDefect When does early binding happen? |
|
[1 reply] : I guess this is what's called "devirtualization" which GCC has optimiz... (by Peter87) |