1# GPR++ - Google Portable Runtime for C++ 2 3The files in this directory contain various utility code for C++ code. 4None of this code is gRPC-specific; anything here may also be useful 5for other open source projects written in C++. 6 7Note that this is one of the few places in src/core where we allow 8the use of portability macros. 9 10Note that this is the only place in src/core where we allow 11use of the C++ standard library (i.e., anything in the `std::` 12namespace). And for now, we require that any use of the 13standard library is build-time-only -- i.e., we do not allow 14run-time dependencies on libstdc++. For more details, see 15[gRFC L6](/grpc/proposal/blob/master/L6-allow-c%2B%2B-in-grpc-core.md) and 16[Moving gRPC core to C++](/grpc/grpc/blob/master/doc/core/moving-to-c%2B%2B.md). 17