by JUANDENT
Why do we want perfect forwarding?
|
|
[3 replies] Last: Does this code demonstrates the advantage of using perfect forwarding?... (by JUANDENT)
|
by JUANDENT
How to require all elements of a parameter pack to satisfy a concept?
|
|
[2 replies] Last: thanks!!! (by JUANDENT)
|
by jNc
get inputs from OS application even if app is not active
|
|
[2 replies] Last: I've googled a lot /dev/input but still not clue, how to get even smal... (by jNc)
|
by darkdave
Unable to link to a c++ dll from VB2019 (1,2)
|
|
[29 replies] Last: Hi all after, including the .def file in the youtube tutorial i manage... (by darkdave)
|
by StMick
Constructor Errors Between Classes
|
|
[2 replies] Last: Perhaps what you meant to do was LinkedList<Animal *> AList; AList.a... (by helios)
|
by JUANDENT
how can I compare the signatures of 2 functions when one of them is a lambda and the other is a regular function?
|
|
[3 replies] Last: #include <iostream> #include <memory> #include <array> #include <stri... (by mbozzi)
|
by StMick
Undefined Reference to User Defined Type
|
|
[3 replies] Last: All the template code should go into the header file. People are gener... (by Ganado)
|
by JUANDENT
How can I restrict a template parameter to a certain signature
|
|
[1 reply] : #include <memory> #include <ranges> #include <vector> template < typ... (by JLBorges)
|
by JUANDENT
How to test if a container type holds unique_ptr as its elements?
|
|
[4 replies] Last: > would that concept hold true even for a std::map ? No. The value_... (by JLBorges)
|
by JamieAl
Why do I get segmentation fault error?
|
|
[6 replies] Last: @Peter87 You are right actually! Thanks! (by JamieAl)
|
by JUANDENT
which callable object requires std::forward when passed as an argument?
|
|
[4 replies] Last: So here is a minimal example what std::forward does: #include <iostrea... (by coder777)
|
by frek
std::packaged_task
|
|
[18 replies] Last: Right. Thanks for your time and info. (by frek)
|
by JUANDENT
implementation of std::exchange is not clear...
|
|
[3 replies] Last: No, you're right. I misread. (by mbozzi)
|
by JUANDENT
How does a default move ctor deal with pointers?
|
|
[2 replies] Last: Compiler-generated move constructors copy trivial sub-objects and move... (by mbozzi)
|
by frek
Callback vs callable object vs function
|
|
[7 replies] Last: OK, thank you very much. (by frek)
|
by oddy
About type inference for function templates
|
|
[2 replies] Last: With C++20 it is possible to get a bit of narrowing for parameters wit... (by George P)
|
by Cyclone
Error in reading a byte from a file.
|
|
[11 replies] Last: Not sure what I did but its working now. It might have been to do with... (by Cyclone)
|
by Atom1
Register assembly in C++
|
|
[2 replies] Last: You could call ShellExecuteW() with lpOperation set to "runas" ... (by kigar64551)
|
by jiapei100
Will the 2nd -std=gnu++14 override the 1st -std=c++17 ?
|
|
[1 reply] : The man gcc either does not mention, or hides the info from casual r... (by keskiverto)
|