| by admin Welcome to this board! |
| |
| [no replies] |
| by semsemdiver sorting an integer array |
| |
| [14 replies] Last: I use VS 2022 (not code). If you're getting an error with std::size t... (by seeplus) |
| by Hawlong convert a std::string to const char* |
| |
| [6 replies] Last: I'm not working off complete information since I don't know what memor... (by Ganado) |
| by Cyclone Increasing Size of Vector (1,2) |
| |
| [29 replies] Last: 2) "make them static or move their definition to be before main()." ... (by seeplus) |
| by hmoein A light and agile thread pool for the masses |
| |
| [no replies] |
| by hmoein C++ DataFrame library |
| |
| [3 replies] Last: I think all of it could fit; https://www.boost.org/doc/libs/1_75_0/doc... (by firedraco) |
| 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) |