Sign In
Van's House
I'm a developer at C++ team. I'm interested in everything related to C++
Translate This Page
Translate this page
Powered by
Microsoft® Translator
Options
Email Blog Author
RSS for posts
Atom
RSS for comments
OK
Search
Advanced search options...
Search In:
Everything
Blogs
Forums
People
Groups
Places
Pages
Date range:
All Time
Last Year
Last 6 Months
Last 3 Months
Last Month
Last Week
Last Two Days
Tags
Bug
C#
C++
C++0x
GCC
Optimization
Reverse Engineering
VC
Archive
Archives
February 2012
(3)
January 2012
(3)
May 2010
(6)
March 2010
(3)
November 2009
(1)
September 2009
(1)
August 2009
(1)
June 2009
(2)
May 2009
(2)
April 2009
(1)
March 2009
(1)
February 2009
(1)
January 2009
(1)
December 2008
(3)
October 2008
(2)
September 2008
(6)
August 2008
(3)
May, 2010
MSDN Blogs
>
Van's House
>
May, 2010
Posts
Subscribe via RSS
Sort by:
Most Recent
|
Most Views
|
Most Comments
Excerpt View
|
Full Post View
Van's House
C++0x features in VC2010 - nullptr
Posted
over 2 years ago
by
Xiang Fan
0
Comments
Summary Page ( n3090.pdf is the current working draft of C++0x standard, it is available at http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3090.pdf ) What we have before C++0x Everyone knows that null pointer value is NULL. In C...
Van's House
C++0x features in VC2010 - some decltype bugs
Posted
over 2 years ago
by
Xiang Fan
0
Comments
1. decltype(*&function) https://connect.microsoft.com/VisualStudio/feedback/details/510640 int foo(); decltype (*&foo) df; // it should be "int (&)()", but it is "int (*)()" The internal representation (it is special for...
Van's House
C++0x features in VC2010 - decltype
Posted
over 2 years ago
by
Xiang Fan
0
Comments
Summary Page ( n3090.pdf is the current working draft of C++0x standard, it is available at http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3090.pdf ) What we have before C++0x When do generic programming in C++, you often have to...
Van's House
C++0x features in VC2010 - auto
Posted
over 2 years ago
by
Xiang Fan
1
Comments
Summary Page ( n3090.pdf is the current working draft of C++0x standard, it is available at http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3090.pdf ) What we have before C++0x C++ is a strongly typed programming language. You have...
Van's House
C++0x features in VC2010 - static_assert
Posted
over 2 years ago
by
Xiang Fan
0
Comments
Summary Page ( n3090.pdf is the current working draft of C++0x standard, it is available at http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2010/n3090.pdf ) What we have before C++0x It is a common task to output meaningful error message...
Van's House
C++0x features in VC2010 - Summary
Posted
over 2 years ago
by
Xiang Fan
0
Comments
VC2010 has been released for a while. It adds many C++0x features (The complete list can be found here: C++0x Core Language Features In VC10: The Table ) In the following posts, I’d like to share some of my experience of these new features. They...
Page 1 of 1 (6 items)