Meta
-
Tags
2018.1 2018.3 2019.1 2019.2 C++/CLI C++20 C++ Russia CPP cpp annotated Debug Doctest EAP error annotator formatter google test guest Interview Modern C++ msvc naming newsletter overload resolution performance productivity quiz ReSharper C++ ReSharper C++ 2016 ReSharper C++ 2016.1 Resharper C++ 2016.2 ReSharper C++ 2016.3 ReSharper C++ 2017 ReSharper C++ 2017.1 ReSharper C++ 2017.2 ReSharper C++ 2017.3 ReSharper C++ 2018 ReSharper C++ 2018.1 ReSharper C++ 2018.2 unit testing Unreal Engine visual studio Visual Studio extensions-
Recent Posts
- C++20 and ReSharper C++
- Unreal Engine support in ReSharper C++ 2019.2
- ReSharper C++ 2019.2: Faster indexing, improved C++20 support, new code analysis checks, and better Unreal Engine support
- Better Ways to Test with doctest – the Fastest C++ Unit Testing Framework
- ReSharper C++ 2019.1: More Responsive, Better for Unreal Engine, and with New Language Features
JetBrains Blogs
Tag Archives: ReSharper C++
What’s New in ReSharper C++ 2018.2
Please welcome ReSharper C++ 2018.2! While ReSharper C++ 2018.1 introduced two major new features, debug step filters and includes analyzer, ReSharper C++ 2018.2 is focused on improving its understanding of the C++ language. The biggest highlight is its long-awaited support … Continue reading
What’s New in ReSharper C++ 2018.1
We are pleased to introduce ReSharper C++ 2018.1, our first major update this year! This release comes with two new important features. First, Debug Step Filters lets you avoid stepping into specific functions during debugging. Second, Includes Analyzer helps investigate … Continue reading
Posted in ReSharper C++ Tips & Tricks
Tagged ReSharper C++, ReSharper C++ 2018, ReSharper C++ 2018.1
2 Comments
Step Filters in ReSharper C++
It hasn’t been long since the first debugging-assistance features — inline values, searchable DataTips, and breakpoints navigation — appeared in ReSharper, but today we’re happy to present yet another cool feature — step filters in C++. Why do you need … Continue reading
What’s New in ReSharper C++ 2017.3
ReSharper C++ 2017.3 has been one of our biggest updates yet in terms of both new features and fixed issues. Without further ado, let’s dig into the notable changes it brings: Clang-Tidy integration Debugger features Language understanding Code inspections and … Continue reading
Posted in ReSharper C++ Tips & Tricks
Tagged ReSharper C++, ReSharper C++ 2017, ReSharper C++ 2017.3
1 Comment
What’s New in ReSharper C++ 2017.2
Please welcome ReSharper C++ 2017.2! This is the second annual ReSharper C++ release, packed as usual with new features and bug-fixes. Take a look at the What’s New page for a quick overview, or continue reading for a deep dive … Continue reading
Posted in ReSharper C++ Tips & Tricks
Tagged ReSharper C++, ReSharper C++ 2017, ReSharper C++ 2017.2
1 Comment
What’s New in ReSharper C++ 2016.3 and 2017.1
ReSharper Ultimate 2017.1 is out! It’s been some time since our last post about updates in ReSharper’s C++ support, so let’s take a look at what has kept the team busy. Major areas of improvements include: Visual Studio 2017 support … Continue reading
What’s New in ReSharper C++ 2016.2
As a part of ReSharper Ultimate 2016.2, our C++ team is happy to present the ReSharper C++ 2016.2 update. All in all, the new release comes with 200+ fixes and resolves several important performance- and stability-affecting issues. Let’s take a … Continue reading
Posted in ReSharper C++ Tips & Tricks
Tagged ReSharper C++, ReSharper C++ 2016, Resharper C++ 2016.2
3 Comments
What’s New in ReSharper C++ 2016.1
Apart from the change in version numbers, ReSharper C++ comes with plenty of new features as well as improvements to existing functionality. Here’s what we’ve got in store for you with this release. Boost.Test Support The previous release of ReSharper … Continue reading
Living with Microsoft C++ Compiler Bugs and Ambiguities
It’s no secret that the Microsoft Visual C++ compiler has lots of non-standard behaviors. What’s even more unfortunate is that those behaviors are subsequently used by different libraries. Ultimately, for a tool vendor there’s no option in not supporting all … Continue reading
Unit Testing C++ with Google Test
Unit testing C++ applications is not exactly easy. Without any embeddable metadata, the actual process of running a unit test has to be defined explicitly in code. Luckily, frameworks such as Google Test provide comprehensive support for this. Let’s take … Continue reading