Embarcadero has RTM'd RAD Studio, Delphi and C++Builder 10.3 Rio (version 20.0) today. You can read the press release here. Included in the release are several C++ compilers.
Here are the command line version details for each compiler.
C++Builder 10.3 Rio (20.0) C++ Compilers
BCC32 - the classic 32-bit windows compiler
BCC32C - Clang-enhanced compiler with a command line flag compatible only with BCC32 (the classic compiler)
BCC32X - command line flag compatible with other...
To prepare for the appearance of C++17 support in the "Carnival" release of C++Builder (RAD Studio August 2018 Roadmap), here are some recent articles that have appeared in the C++ community. To stay up to date on what's happening with ISO C++ you should bookmark the ISO C++ foundation's website.
Modern C++: 7 Ways to Fake It Until You Have It
“Modern C++” != “New(est) Standard”
std::string_view: The Duct Tape of String Types
C++17 in Detail - new book by Bartłomiej Filipek
Compil...
About "any type" in C++11[JAPAN]
C++1z(C++17) expects "std::any" to be prepared.
C++Builder(C++11) can use boost. Its version is 1_55.
////
#define BOOST_VERSION 105500
#define BOOST_LIB_VERSION "1_55"
"boost::any" can be used.
////
#include <boost/any.hpp>;
////
void __fastcall TForm1::Button1Click(TObject *Sender)
{
//value of the float
boost::any button_and_float = BOOST_VERSION + 0.0001;
//Place TButton in the same variable.
//But, it does not go out err...
Какая бы версия Delphi, С++Builder или RAD Studio не использовалась у вас сейчас, вам стоит запланировать переход на самый последний релиз 10.1 Berlin Update 2 (Anniversary Edition). Многие пользователи уже перешли на эту версию, которая была выпущена в ноябре этого года, точно по плану развития продуктов компании Embarcadero на 2016-2017 годы.
С момента выхода версии XE2 нашей компании пришлось выпускать по два «больших» релиза в год, чтобы дать возможность разрабатывать приложения и сис...
I'm David Millington, and I recently joined Embarcadero as the C++ Product Manager. I'm very pleased to announce this and say hi to the community.
A quick bio: I have a long history with C++Builder, and used it for almost a decade working on scientific software before starting a consulting company, Parnassus, a few years ago, where I worked with both C++ Builder and Delphi. If you follow the RAD Studio developer community closely you may have heard of some IDE plugins I write, which a...
I've submitted two session proposals to the upcoming CppCon2016, the C++ Conference. The talks that I have submitted are "A Tale of Two WG21 ISO C++ Language Proposals: Concepts and Unified Call Syntax" and "UI prototyping and Internet of Things development for multiple devices using an enhanced Clang-based C++compiler ". I will learn before the end of June whether my talks are accepted. As part of my presentation research, I have been reading a lot of C++ blog posts and articles. Out of th...