[PATCH] D74340: [CodingStandards] Clarify C++ Standard Library usage

John McCall via Phabricator via llvm-commits llvm-commits at lists.llvm.org
Mon Feb 10 12:45:56 PST 2020


rjmccall added inline comments.


================
Comment at: llvm/docs/CodingStandards.rst:73
 
-Use the C++ standard library facilities whenever they are available for
-a particular task. LLVM and related projects emphasize and rely on the standard
-library facilities as much as possible.
-
-We avoid some standard facilities, like the I/O streams, and instead use LLVM's
-streams library (raw_ostream_). More detailed information on these subjects is
-available in the :doc:`ProgrammersManual`.
+Instead of implementing custom data structures we encourage the use of C++
+standard library facilities or LLVM support libraries whenever they are
----------------
There should be a comma after "structures" here.

Feel free to commit with that fix.


Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D74340/new/

https://reviews.llvm.org/D74340





More information about the llvm-commits mailing list