paul-g
paul-g

Reputation: 3886

Google Style Guide "<chrono> is an unapproved C++11 header"

Why is <chrono> an unapproved header in the Google CPP Guide? I can't find any direct mention of this in the Google CPP Style Guide. This point mentions portability issues with <ratio> and <cfenv> but nothing about <chrono>.

Upvotes: 12

Views: 11167

Answers (1)

NathanOliver
NathanOliver

Reputation: 181027

According to C++11 use in Chromium The reason is

Duplicated Time APIs in base/. Keep using the base/ classes.

Upvotes: 9

Related Questions