Re: [C++] Intent to eliminate: `using namespace std; ` at global scope

2019-08-29 Thread Eric Rescorla
+1. This::sounds::like::a::great::change. -Ekr On Thu, Aug 29, 2019 at 12:13 PM Nathan Froyd wrote: > Hi all, > > In working on upgrading our C++ support to C++17 [1], we've run into > some issues [2] surrounding the newly-introduced `std::byte` [3], > various Microsoft headers that pull in

[C++] Intent to eliminate: `using namespace std;` at global scope

2019-08-29 Thread Nathan Froyd
Hi all, In working on upgrading our C++ support to C++17 [1], we've run into some issues [2] surrounding the newly-introduced `std::byte` [3], various Microsoft headers that pull in definitions of `byte`, and conflicts between the two when one has done `using namespace std;`, particularly at