Commit Graph

1074 Commits (1b259959f6a1deb575b3bc3e6b98816a65dc82cb)
 

Author SHA1 Message Date
Gabriel Dos Reis 1b259959f6 Merge pull request #801 from severinmeyer/ES-Typos-squashed
Fix typos in section ES: Expressions and statements
9 years ago
Gabriel Dos Reis 783ab6c6ca Merge pull request #802 from severinmeyer/E-Typos-squashed
Fix typos in section E: Error handling
9 years ago
Gabriel Dos Reis 9dd8a0ded6 Merge pull request #803 from severinmeyer/Other-Typos-squashed
Fix a few more typos
9 years ago
Severin Meyer 6fb7ad6bb5 Fix a few more typos
F.22: Fix typos
C.128: Update the title in the ToC, to match the new title from commit f0e29f0
Con.1: Fix typo
T.84: Fix typo
NR.2: Remove duplicated word from title (single single)
9 years ago
Severin Meyer 185f70781d Fix typos in section E: Error handling
E.25: Fix several typos
E.25: Add missing comma
E.2: Add missing verb
9 years ago
Severin Meyer efdd83bf9a Fix typos in section ES: Expressions and statements
ES.dcl: Fix typo
ES.25: Use the singular form for the title, to correct it and to match it with the entry in the ToC
ES.30: Fix several typos
ES.40: Fix typo in code comments
ES.61: Capitalize first word of title
ES.63: Fix typo
ES.70: Fix typo and capitalization
ES.74: Fix typo in title
ES.102: Fix typo and add missing comma
9 years ago
Andrew Pardoe 9987d835b9 Updating date 9 years ago
Andrew Pardoe 7741b8689e Merge pull request #796 from severinmeyer/C-Typos
Fix typos in section C: Classes and class hierarchies
9 years ago
Gabriel Dos Reis 449e1e60cf Merge pull request #795 from severinmeyer/CP.41-Typo
CP.41: Fix typo in code example
9 years ago
Severin Meyer 353f8ffc4c C.140: Fix typo in text 9 years ago
Severin Meyer 26953e0bf9 C.139: Fix typo in text 9 years ago
Severin Meyer fc0999c56e C.129: Fix typo in text 9 years ago
Severin Meyer 434f995679 C.128: Fix typo in text 9 years ago
Severin Meyer 66c0348d19 C.80: Fix typo in text 9 years ago
Severin Meyer 7070ffa839 C.41: Add missing comma 9 years ago
Severin Meyer efb284388f C.defop: Fix typo in introductory text 9 years ago
Severin Meyer db8273d068 C.concrete: Fix typo in introductory text 9 years ago
Severin Meyer 0d02b7e8bf C.9: Capitalize first word of title 9 years ago
Severin Meyer edb59eea86 C.8: Fix typo in text 9 years ago
Severin Meyer b516c49efc C.8: Fix typo in title and capitalize first word 9 years ago
Severin Meyer c6071b8add CP.41: Fix typo in code example 9 years ago
Gabriel Dos Reis 09d76d93fc Merge pull request #791 from severinmeyer/P.9-Typo
P.9: Fix typo in code example
9 years ago
Gabriel Dos Reis b3f0b449ed Merge pull request #790 from stephanemagnenat/master
Fixed missing `
9 years ago
Severin Meyer c3ee965a28 P.9: Fix typo in code example 9 years ago
Stéphane Magnenat 17c7ba9b8b Fixed missing ` 9 years ago
Andrew Pardoe 58abafebe6 Update isocpp.dic 9 years ago
Gabriel Dos Reis 7476fc3194 Merge pull request #786 from mserdarsanli/master
Fix broken anchor link
9 years ago
Mustafa Serdar Sanli 53bc78fd49 Fix broken anchor link 9 years ago
Jan Nils Ferner d86a82f1eb Fix typo (#782) 9 years ago
Jonathan Wakely 98f1e46602 C.146 Compare pb2->id() instead of pb2
Fixes #504
9 years ago
Gabriel Dos Reis 173b036e51 Merge pull request #766 from congdanhqx/master
ES.7 Fix typo, "i" -> "current_element_index"
9 years ago
Doan Tran Cong Danh db85ec865d ES.7 Fix typo, "i" -> "current_element_index" 9 years ago
Jonathan Wakely aab97d9e48 C.32 Fix typo, "aide" -> "aid" 9 years ago
Gabriel Dos Reis 6767413118 Merge pull request #760 from derekxgl/patch-1
P.11 call vector reserve(100) instead of vector(100)
9 years ago
Gabriel Dos Reis 6819dd6f5f Merge pull request #761 from pepsiman/patch-2
Correct spelling of nullptr
9 years ago
Malcolm Parsons 38772fc251 Correct spelling of nullptr 9 years ago
Derek Li 6c29e226d8 P.11 call vector reserve(100) instead of vector(100) 9 years ago
Gabriel Dos Reis 7b4a1903ec Merge pull request #745 from kks32/master
Fixes wrong order of type and function name in naming scheme - master branch
9 years ago
Gabriel Dos Reis 804964d653 Merge pull request #758 from Eliyahu-Ravuna/patch-22
Short string optimization example for C.180
9 years ago
Eliyahu Ravuna 52c4376433 Short string optimization example for C.180
Extra blank lines removed

strcpy replaced with strcpy_s to get rid of Travis CI warnings

Note: strcpy_s  is defined in the Annex K of the C++11 standard.

Gabriel's comments incorporated

- No need for braces for a single statement.
- Comment to explain why buffer_size is 16.

Bracing style made consistent with the rest of the examples

Bracing style made consistent with the rest of the examples

braces made consistent with the rest of the examples
9 years ago
Andrew Pardoe f6dd6159f8 Fix issue #747 9 years ago
Andrew Pardoe f66d9aea46 Fix 798177568e 9 years ago
Andrew Pardoe 798177568e Merge pull request #754 from Eliyahu-Ravuna/patch-21
CP.110 & CP.111: Double-checked locking
9 years ago
Andrew Pardoe b149a50faf Merge pull request #756 from pepsiman/patch-1
P.5 Correct case of Int alias
9 years ago
Andrew Pardoe 4d45c6bb1d Merge pull request #755 from pepsiman/executionpolicy
P.3 Split execution policy and container
9 years ago
Eliyahu Ravuna ec2f23781d CP.110 renamed as "Do not write your own double-checked locking"
CP.110 renamed as "Do not write your own double-checked locking".
Explanation and two examples added.

Added exception

Double-checked locking may be legitimately used in lock-free programming. However, see the rule [CP.100: Don't use lock-free programming unless you absolutely have to](#Rconc-lockfree).

Title made clearer and a conventional pattern has been added

* Title made clearer
* A correct example of double-checked locking has been added

Casing fixed

Casing fixed

Extra whitespace deleted

CP.110 and CP.111 separated

- CP.110: Do not write your own double-checked locking for initialization
- CP.111: Use a conventional pattern if you really need double-checked locking

Whitespace removed

Example simplified

Whitespace issue fixed.

punctuation fixed.
9 years ago
Gabriel Dos Reis d23f9872e0 Merge pull request #751 from johelegp/introduction_fixes
In: Grammar and correction fixes
9 years ago
Malcolm Parsons 71df1537b3 P.5 Correct case of Int alias
Revert d9562f683d and part of 9590bb94b1
9 years ago
Malcolm Parsons e66f5bb28e P.3 Split execution policy and container 9 years ago
Johel Ernesto Guerrero Peña 2a000ac21a In: Grammar and correction fixes
We use letters to identify the first part of a rule "number", not just one letter.
The rest are grammar fixes.
9 years ago