Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | [c++/en,es,it,br,ru,ch] Fix forgotten namespace std:: (#2619) | omgee | 2017-01-03 | -1/+1 |
| | ||||
* | c++/en typo, formatting fixes (#2531) | George Gognadze | 2016-10-30 | -3/+3 |
| | | | | | | | | | | | | | | | | | Space should be removed. before: // concatenated_tuple becomes = (10, 'A', 1e9, 15, 11, 'A' ,3.14141) after: // concatenated_tuple becomes = (10, 'A', 1e9, 15, 11, 'A', 3.14141) Typo initialize is correct form. before: map<char, int> mymap; // Will initalize the map with key as char and value as int after: map<char, int> mymap; // Will initialize the map with key as char and value as int Typo corresponding is correct form. before: // To find the value correponsing to a key after: // To find the value corresponding to a key | |||
* | [c++/en] Fix typo of iterator (#2501) | Andrew Chellis | 2016-10-24 | -1/+1 |
| | | | iteartor -> iterator | |||
* | Some minor (mostly stylistic) fixes in C++ | Valery Cherepanov | 2016-08-02 | -49/+49 |
| | ||||
* | Added the Logical and bitwise operators section, fixes merge issue with ↵ | Jatin Dhankhar | 2016-06-27 | -6/+51 |
| | | | | | | | | | | | #1817 (#2292) * Added the Logical and bitwise operators section * Added a note for Short Circuit evaluation Excerpt from https://en.wikipedia.org/wiki/Short-circuit_evaluation C++ uses minimal evaluation, or McCarthy evaluation (after John McCarthy (computer scientist)) is the semantics of some Boolean operators in some programming languages in which the second argument is executed or evaluated only if the first argument does not suffice to determine the value of the expression: when the first argument of the AND function evaluates to false, the overall value must be false; and when the first argument of the OR function evaluates to true, the overall value must be true. In some programming languages (Lisp), the usual Boolean operators are short-circuit. | |||
* | Containers Added (#1942) | Ankush goyal | 2016-06-26 | -0/+94 |
| | | | | | | | | * Containers Added * Text Formatting Added required spaces between text and // | |||
* | Remove a section from c++, fixes #2130 | Geoff Liu | 2016-02-15 | -24/+8 |
| | ||||
* | Update c++.html.markdown | AndrejPetelin | 2016-01-31 | -1/+1 |
| | | | v.empty() queries if v is empty while v.clear() actually clears it (or rather sets size to 0). | |||
* | #2119 fixups | ven | 2016-01-28 | -7/+7 |
| | ||||
* | [C++/en] Tuple , Updated | Jaskamal Kainth | 2016-01-28 | -3/+2 |
| | ||||
* | [C++/en] Tuple , updated | Jaskamal Kainth | 2016-01-28 | -5/+5 |
| | ||||
* | [C++/en] Tuples in C++ | Jaskamal Kainth | 2016-01-28 | -7/+6 |
| | ||||
* | Added Tuple | Jaskamal Kainth | 2016-01-28 | -0/+48 |
| | ||||
* | More Fixes | bk2dcradle | 2016-01-08 | -11/+14 |
| | ||||
* | Add my Changes | bk2dcradle | 2016-01-05 | -0/+67 |
| | ||||
* | Added missing semicolon | John Rocamora | 2015-12-12 | -1/+1 |
| | ||||
* | [cpp/en] comparator function for std containers | Brook Zhou | 2015-10-31 | -0/+18 |
| | ||||
* | [C++/en] Added in Enum information | Cameron Wood | 2015-10-17 | -0/+64 |
| | | | | | Added in some information about enums in C++ including some different use cases | |||
* | [C++/en] Small inheritance clarification | Cameron Wood | 2015-10-11 | -0/+2 |
| | | | | | Clarified that private members are inherited but are not directly accessible | |||
* | Update c++.html.markdown | George Gognadze | 2015-10-07 | -1/+1 |
| | | | spelling error | |||
* | Grammar | Pushkar Sharma | 2015-10-05 | -2/+2 |
| | | | the address | |||
* | Fixed a mistake from previous commit. | Pushkar Sharma | 2015-10-05 | -2/+2 |
| | | | Better explained reference address. | |||
* | Update c++.html.markdown | Pushkar Sharma | 2015-10-04 | -0/+6 |
| | | | Regarding issue #1216, Better explaining the Reference 'fooRef'. | |||
* | Add to contributors | Alva Connor Waters | 2015-10-02 | -0/+1 |
| | ||||
* | Misc. typos and formatting | Alva Connor Waters | 2015-10-02 | -33/+39 |
| | ||||
* | More explanation on virtual destructors | Alva Connor Waters | 2015-10-02 | -1/+4 |
| | ||||
* | Clarify character literals | Alva Connor Waters | 2015-10-02 | -4/+4 |
| | ||||
* | Update c++.html.markdown | George Gognadze | 2015-10-01 | -1/+1 |
| | | | | | o should be capitalized. this: overrides should be: Overrides | |||
* | A note about RVO | Geoff Liu | 2015-09-02 | -1/+4 |
| | ||||
* | Now that we explained move semantics | Geoff Liu | 2015-08-30 | -1/+2 |
| | ||||
* | More about temporary objects | Geoff Liu | 2015-08-30 | -0/+16 |
| | ||||
* | Merge remote-tracking branch 'upstream/master' | Geoff Liu | 2015-08-30 | -3/+4 |
|\ | ||||
| * | Fix C++ namespace explanation | Geoff Liu | 2015-08-28 | -3/+4 |
| | | ||||
* | | A little more about C++ references | Geoff Liu | 2015-08-30 | -0/+51 |
|/ | ||||
* | Updated other exception to also be runtime_error type instead. | Adam | 2015-06-02 | -1/+1 |
| | ||||
* | Using std::runtime_error instead of std::exception. | Adam | 2015-06-02 | -1/+2 |
| | ||||
* | Template example class should have public method so it can get called ↵ | Adam | 2015-06-01 | -0/+1 |
| | | | | externally. | |||
* | Exceptions do not take a string argument in their constructor. | Adam | 2015-06-01 | -2/+2 |
| | ||||
* | Add missing semicolons. | Adam | 2015-05-31 | -2/+2 |
| | ||||
* | Remove return type from Dog class constructor and destructor, change ↵ | Adam | 2015-05-31 | -3/+3 |
| | | | | nonexistant printDog function to print. | |||
* | [c++/en] Fixed typos. | Hans Ole Hatzel | 2015-05-20 | -3/+3 |
| | ||||
* | comment changes | Geoff Liu | 2015-05-06 | -3/+3 |
| | ||||
* | Response to comments | Geoff Liu | 2015-05-05 | -8/+31 |
| | ||||
* | Minor fix | Geoff Liu | 2015-05-04 | -3/+4 |
| | ||||
* | Templates and such | Geoff Liu | 2015-05-04 | -0/+102 |
| | ||||
* | Neither gcc nor clang accept void main. | MoreMoschops | 2015-04-26 | -2/+1 |
| | | | | | | | | | | | | | | | | | | | | | | | Neither gcc nor clang accept void main. Remove this bad information. Tested as follows: $ cat 045.cpp void main() { } $ g++ 045.cpp 045.cpp:1:11: error: ‘::main’ must return ‘int’ void main() ^ $ clang++ 045.cpp 045.cpp:1:1: error: 'main' must return 'int' void main() ^~~~ int 1 error generated. $ g++ --version g++ (Ubuntu 4.8.2-19ubuntu1) 4.8.2 $ clang++ --version Ubuntu clang version 3.4.2-3ubuntu2~xedgers (tags/RELEASE_34/dot2-final) (based on LLVM 3.4.2) | |||
* | [c++/en] Fix spelling | Arnie97 | 2015-04-11 | -1/+1 |
| | ||||
* | Closes #1000 | Arnie97 | 2015-03-13 | -3/+5 |
| | ||||
* | fixed some typos | Riku-Pekka Silvola | 2015-02-25 | -2/+2 |
| | ||||
* | Reassignment to reference doesn't cause error | Geoff Liu | 2014-12-01 | -1/+4 |
| |