|
3h
|
|
reviewed | Approve suggested edit on looping through UltraGridRow UltraCombo to get both checked and unchecked rows in the same dataset |
|
3h
|
|
reviewed | Approve suggested edit on Add function definition in llvm IR |
|
3h
|
|
answered | C++ API performance issue with tree structure |
|
3h
|
|
comment |
How to install the c++ libxl library in linux I suggest taking this to the Unix & Linux site, since it isn't a programming question. Don't forget to tell them what you tried and what happened. |
|
4h
|
|
comment |
Accept multiple types using one stringstream function parameter Why do you want to convert wchar_t literals into wstringstreams in the first place?
|
|
7h
|
|
comment |
How to detect whether there is a debugger attached in c++? Why? The only thing the function will do is return to the call site ... |
|
7h
|
|
comment |
Deleting an edge from Minimum Spanning Tree You're asking for help understanding (not implementing) a math problem ... it feels like math.stackexchange might be a better fit. |
|
2d
|
|
answered | How to make a pipe in c++ |
|
2d
|
|
comment |
dup return error (c programming in linux) No, dup doesn't know you want to replace stdout, does it? It returns a new file descriptor which might have value 1, but probably isn't required to.
|
|
2d
|
|
answered | dup return error (c programming in linux) |
|
2d
|
|
comment |
Reading database from file c++ So when you look in your debugger, where is the application stopped if it doesn't end? |
|
2d
|
|
comment |
Can I determine the size/length of an array in C++ without having to hardcode it? You don't have to worry about fairness: just accept the answer you found most helpful. Visitors can up-vote (or down-vote) as well. |
|
2d
|
|
revised |
Can I determine the size/length of an array in C++ without having to hardcode it? add example, remove critique |
|
2d
|
|
revised |
Can I determine the size/length of an array in C++ without having to hardcode it? add example, remove critique |
|
2d
|
|
revised |
Can I determine the size/length of an array in C++ without having to hardcode it? added 99 characters in body |
|
2d
|
|
answered | Can I determine the size/length of an array in C++ without having to hardcode it? |
|
2d
|
|
revised |
Can I determine the size/length of an array in C++ without having to hardcode it? title type, removed superfluous text |
|
May
17 |
|
comment |
c++ semaphore is not considering order of call Maybe put the realtime data-analysis in a dedicated thread, and either use either a single dedicated I/O thread, or consider asynchronous I/O. |
|
May
17 |
|
answered | How to improve my code about the growing of a bacterial colony (C++) |
|
May
17 |
|
comment |
c++ semaphore is not considering order of call Honestly, those writes are so small they may be cheaper than the synchronization required to do them in a different thread. |