Showing results for C++ - C++ Team Blog

Dec 3, 2015
0
0

C++ Core Guidelines Checkers available for VS 2015 Update 1

Andrew Pardoe
Andrew Pardoe

[This post was written by Andrew Pardoe and Neil MacIntosh] Update: The CppCoreCheck tools are now part of VS 2017: https://blogs.msdn.microsoft.com/vcblog/2016/10/12/cppcorecheck. Back in September at CppCon 2015 Neil announced that we would be shipping new code analysis tools for C++ that would enforce some of the rules in the C++ Core Guidelin...

C++
Dec 3, 2015
0
0

C++ Modules in VS 2015 Update 1

Andrew Pardoe
Andrew Pardoe

点这里看中文版 [This post was written by Gabriel Dos Reis and Andrew Pardoe] Update: See this post on using the Standard Library via modules in MSVC. The VC++ team is excited to preview a new feature in VS 2015 Update 1: The first experimental implementation of A Module System for C++, proposed for C++17. That proposal was approved by the C++ standards Ev...

C++
Nov 30, 2015
0
0

Coroutines in Visual Studio 2015 – Update 1

EricMittelette
EricMittelette

In preview of Visual Studio 2015, we introduced Coroutines for C++, see these blog post for an introduction and here. You can also look at the CPPCon 2015 talk about C++ Coroutines here. We continue to work on resumable functions, here it is a brief update on coroutines status in VS 2015 Update 1. See the Visual Studio 2015 Update1 post here...

C++
Nov 6, 2015
0
0

Java debugging and language support in Visual Studio for Android

Marian Luparu
Marian Luparu

As part of our continued efforts to make Visual Studio a productive environment for developing mobile applications we’re pleased to announce that Visual Studio 2015 Update 1 RC adds support for debugging your Java source files that are part of your Android projects and (with the help of an extension) get IntelliSense and Browsing assistance f...

C++
Oct 21, 2015
0
1

Memory Profiling in Visual C++ 2015

Adam Welch (MSFT)
Adam Welch (MSFT)

As announced in an earlier blog post, Visual Studio 2015 hosts a new set of memory profiling tools to help address and fix memory issues within your applications.  The new debug-time profiler runs during your debugging session and allows you to take snapshots anytime, such as at a breakpoint, and also view the heap contents during th...

C++
Oct 19, 2015
0
0

Do You Prefer Fast or Precise?

Jim Hogg
Jim Hogg

What is this Blog About? My name is Jim Hogg, a Program Manager in the Compilers team. We would like your feedback on a feature of the Visual C++ compiler that affects the code we generate for floating-point operations. Your answers will help determine what we do. You can vote via survey -- it should not take you more than a few minutes to fill out...

C++
Jun 22, 2015
1
0

Format Specifiers Checking

Yuriy Solodkyy
Yuriy Solodkyy

By popular request, in Visual Studio 2015 RTM, we’ve implemented the checking of arguments given to printf/scanf and their variations in the C standard library. You can try the examples from this post in our online compiler.SummaryHere is a list of all the formatting warnings that were introduced: positional arguments in _p functions , and we...

Diagnostics
Apr 29, 2015
1
0

MFC Dynamic Dialog Layout

Artur Laksberg
Artur Laksberg

One of the frequently requested MFC features (and by the way, thanks for the feedback and keep it coming!) is the ability to intelligently resize dialogs and their content at runtime. One approach is to intercept WM_SIZE message of the parent dialog and recalculate the size and position of the child controls accordingly. It works, but is extremely...

C++
Feb 13, 2015
0
0

Find Your Favorite Library for C++ in NuGet

Hong Hong -
Hong Hong -

Many of you may know that NuGet is the “go-to” library repository for .NET development, but what about using it for C++? The answer here may surprise you as many of the top open source C++ libraries are actually sitting in the NuGet gallery. For those who haven’t used NuGet before, NuGet is the package manager system for the Micr...

C++