Remove c
article thumbnail

Trip report: Winter ISO C++ standards meeting (Prague)

Sutter's Mill

A few minutes ago, the ISO C++ committee completed its final meeting of C++20 in Prague, Czech Republic. ISO C++ committee in Prague, on the occasion of completing C++20 (February 2020) C++20 is done! Per our published C++20 schedule , we finished technical work on C++20 at this meeting.

C++ 98
article thumbnail

C++ safety, in context

Sutter's Mill

To talk about C++’s current safety problems and solutions well, I need to include the context of the broad landscape of security and safety threats facing all software. tl;dr: I don’t want C++ to limit what I can express efficiently. tl;dr: I don’t want C++ to limit what I can express efficiently. issues with C++.

C++ 130
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

article thumbnail

Draft FAQ: Why does the C++ standard ship every three years?

Sutter's Mill

More about that in the post-meeting trip report after the meeting is over… FAQs (As of pre-Cologne, July 2019) There are bugs in the standard, so should we delay C++20? If we had just another meeting or two, we could add <feature> which is almost ready, so should we delay C++20? Of course, and no. Of course, and no.

C++ 96
article thumbnail

What the SEC cybersecurity disclosure mandate means for application security

Dynatrace

How should C-level executives and boards of directors prepare for the SEC cybersecurity mandate? To avoid this, ensure all C-suite members understand general cybersecurity topics and the SEC cybersecurity mandate. Assess the SEC cybersecurity mandate implications and pinpoint the definition of “materiality” for your organization.

article thumbnail

Is ANALYZE TABLE Safe on a Busy MySQL Database Server?

Percona

version, like this: ANALYZE TABLE removes the table from the table definition cache, which requires a flush lock. This makes the query wait for any long-running queries to finish but also can trigger cascading waiting for other incoming requests. In short, ANALYZE could lead to nasty stalls in busy production environments.

Servers 101
article thumbnail

cppfront: Autumn update

Sutter's Mill

file compilation looks like when compiled on the command line on my laptop: But note you can still build cppfront as all-today’s-C++ using any fairly recent C++20 compiler because I distribute the sources also as C++ (just as Bjarne distributed the cfront sources also as C). Here’s what that reflect.h2

C++ 90
article thumbnail

T-SQL Windowing Improvements in SQL Server 2022

SQL Performance

WHERE custid IN ( 1 , 2 ) WINDOW P AS ( PARTITION BY custid ) , PO AS ( P ORDER BY orderdate , orderid ) , POF AS ( PO ROWS UNBOUNDED PRECEDING ) ORDER BY custid , orderdate , orderid ; The order of the window name definitions in the WINDOW clause is insignificant. OrderValues. OrderValues.

Servers 145