c++ Programming Glossary: stephan
Automatically count the number of instantiated classes in a TMP? http://stackoverflow.com/questions/11403417/automatically-count-the-number-of-instantiated-classes-in-a-tmp for Visual C is adding the compile switch from one of Stephan T. Lavavej's videos d1reportAllClassLayout and doing a grep..
Lambdas and std::function http://stackoverflow.com/questions/11774277/lambdas-and-stdfunction c templates lambda c 11 share improve this question Stephan T. Lavavej explains why this doesn't work in this video . Basically..
Windows C++ dialog resizer class http://stackoverflow.com/questions/144583/windows-c-dialog-resizer-class individual items as needed as the screen is resized. Stephan Keil has a good one DlgResizeHelper which basically resizes..
Are int8_t and uint8_t intended to behave like a character? http://stackoverflow.com/questions/15911714/are-int8-t-and-uint8-t-intended-to-behave-like-a-character and possibly extended signed integer types . See also Stephan T. Lavavej's comments on std make_unsigned and std make_signed..
How do I erase elements from STL containers? http://stackoverflow.com/questions/16013545/how-do-i-erase-elements-from-stl-containers
Why is `make_unique<T[N]>` disallowed? http://stackoverflow.com/questions/16596950/why-is-make-uniquetn-disallowed helpful static_assert messages. The author of the proposal Stephan T. Lavavej illustrates this situation in this video on Core..
Scope of C libraries in C++ - <X.h> vs <cX> http://stackoverflow.com/questions/2118422/scope-of-c-libraries-in-c-x-h-vs-cx compiler c gcc gnu share improve this question Stephan T. Lavavej a member of the MSVC team addresses the reality of..
are C functions declared in <c____> headers guaranteed to be in the global namespace as well as std? http://stackoverflow.com/questions/2587445/are-c-functions-declared-in-c-headers-guaranteed-to-be-in-the-global-names with some relaity vs. what the standard says from Stephan T. Lavavej of the MSVC team http blogs.msdn.com vcblog archive..
push_back vs emplace_back http://stackoverflow.com/questions/4303513/push-back-vs-emplace-back question on the Visual C blog . Here is the answer from Stephan T Lavavej the official maintainer of the Visual C standard library..
Visual Studio debug iterators http://stackoverflow.com/questions/6103314/visual-studio-debug-iterators versions c visual studio share improve this question Stephan Lavavej has provided some detail on this _SECURE_SCL and _HAS_ITERATOR_DEBUGGING..
Does MSVC10 Visual Studio 2010 support C++ range based loops http://stackoverflow.com/questions/6898859/does-msvc10-visual-studio-2010-support-c-range-based-loops p array ... c c 0x share improve this question No. Stephan T. Lavavej's explains the feature was altered too late in Visual..
Are there any concurrent containers in C++11? http://stackoverflow.com/questions/7817364/are-there-any-concurrent-containers-in-c11 STL containers and whether they are thread safe. Taking Stephan ™s words here the reality is that they aren ™t not as a bug but..
|