Explicitly refer to the std::chrono namespace to avoid conflicts with the folly:...
authorChristopher Dykes <cdykes@fb.com>
Wed, 13 Dec 2017 20:49:43 +0000 (12:49 -0800)
committerFacebook Github Bot <facebook-github-bot@users.noreply.github.com>
Wed, 13 Dec 2017 20:51:15 +0000 (12:51 -0800)
commit4cbf7a642550f823e34eee832ffd9052f148864d
treed01eb9658aafda300e11cd096922d4e038bc59e0
parent9b471821c6bf11a45e3ad9cb20ad6e5616efe089
Explicitly refer to the std::chrono namespace to avoid conflicts with the folly::chrono namespace

Summary:
This is a hard requirement due to an upcoming change in Folly.

The codemod was only run on files that referenced the `std::chrono` namespace with an unqualified `chrono` and also used both the `std` and `folly` namespaces.
```
fbgr -sl "[^:]chrono::" | xargs grep -l "using namespace std;" | xargs grep -l "using namespace folly;" | xargs sed -r -i 's/([^:])chrono::([a-z])/\1std::chrono::\2/g'
```

Reviewed By: yfeldblum

Differential Revision: D6547864

fbshipit-source-id: 4a8230d311edbaa173722a09b2773e8d053fae7e
folly/io/async/test/EventHandlerTest.cpp