Style guide for C++ [closed]
Closed 8 years ago.
Style guide for C++ [closed]
Closed 8 years ago.
argument grouping with parenthesis are valid in C++?
On python I can group arguments into a tuple, something like
argument grouping with parenthesis are valid in C++?
On python I can group arguments into a tuple, something like
Why are pointers to literals not possible?
Reference to a literal is possible only if the reference is declared as constant.
C API in C++ with RAII, two alternatives to implement error handling (Exceptions)
I have an API written in C, which produces a result by returning a pointer to allocated memory.
For using it with C++ (C++11) I’ve wrapped the function calls in objects, which keep the result in a std::shared_ptr
. So far so good.
What are my options for using a C++11 library in a C# WPF application? [closed]
Closed 10 years ago.
Why std::allocators are not that popular? [closed]
Closed 10 years ago.
Why std::allocators are not that popular? [closed]
Closed 10 years ago.
Should I feel “uncomfortable” using auto in C++? [duplicate]
We use auto where we don’t have a specific reason to mention the type
explicitly. “Specific reasons” include: