by seeplus
Uncaught error
|
|
[16 replies] Last: a null pointer is fine, too 0x0000000000000000: I'm done for!... (by helios)
|
by JUANDENT
How to open a file that does not exist? For writing...
|
|
[3 replies] Last: If you want to open a file for i/o even if it does not exist, try to o... (by seeplus)
|
by jNc
Ubuntu/CPP emulate CTRL+V
|
|
[1 reply] : Maybe, https://stackoverflow.com/questions/1262310/simulate-keypress-i... (by Ganado)
|
by jNc
get data from text file and send to text field
|
|
[3 replies] Last: Im using Qt Editor, but I think it does not matter. It does matter. ... (by kigar64551)
|
by JUANDENT
What does this trick do? using unpack = int[]...
|
|
[3 replies] Last: Thanks!! (by JUANDENT)
|
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)
|