diff options
author | Jakub Staszak <kubastaszak@gmail.com> | 2012-09-30 20:42:13 +0000 |
---|---|---|
committer | Jakub Staszak <kubastaszak@gmail.com> | 2012-09-30 20:42:13 +0000 |
commit | bfa43c042231decdf491acae5ed6ef89c196ba97 (patch) | |
tree | 362c5f570dca6b6eabc5033b9bb4860e2a6531bd /docs/CodingStandards.rst | |
parent | f4d25a2c461f7a64fcc643a6ea2541e87067d036 (diff) | |
download | external_llvm-bfa43c042231decdf491acae5ed6ef89c196ba97.zip external_llvm-bfa43c042231decdf491acae5ed6ef89c196ba97.tar.gz external_llvm-bfa43c042231decdf491acae5ed6ef89c196ba97.tar.bz2 |
Fix && to && in Coding Standards.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164920 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/CodingStandards.rst')
-rw-r--r-- | docs/CodingStandards.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/CodingStandards.rst b/docs/CodingStandards.rst index 455ffd5..71ddc59 100644 --- a/docs/CodingStandards.rst +++ b/docs/CodingStandards.rst @@ -714,7 +714,7 @@ enforced, and hopefully what to do about it. Here is one complete example: .. code-block:: c++ inline Value *getOperand(unsigned i) { - assert(i < Operands.size() && "getOperand() out of range!"); + assert(i < Operands.size() && "getOperand() out of range!"); return Operands[i]; } |