summaryrefslogtreecommitdiffhomepage
path: root/c++.html.markdown
Commit message (Collapse)AuthorAgeLines
* Remove a section from c++, fixes #2130Geoff Liu2016-02-15-24/+8
|
* Update c++.html.markdownAndrejPetelin2016-01-31-1/+1
| | | v.empty() queries if v is empty while v.clear() actually clears it (or rather sets size to 0).
* #2119 fixupsven2016-01-28-7/+7
|
* [C++/en] Tuple , UpdatedJaskamal Kainth2016-01-28-3/+2
|
* [C++/en] Tuple , updatedJaskamal Kainth2016-01-28-5/+5
|
* [C++/en] Tuples in C++Jaskamal Kainth2016-01-28-7/+6
|
* Added TupleJaskamal Kainth2016-01-28-0/+48
|
* More Fixesbk2dcradle2016-01-08-11/+14
|
* Add my Changesbk2dcradle2016-01-05-0/+67
|
* Added missing semicolonJohn Rocamora2015-12-12-1/+1
|
* [cpp/en] comparator function for std containersBrook Zhou2015-10-31-0/+18
|
* [C++/en] Added in Enum informationCameron Wood2015-10-17-0/+64
| | | | | Added in some information about enums in C++ including some different use cases
* [C++/en] Small inheritance clarificationCameron Wood2015-10-11-0/+2
| | | | | Clarified that private members are inherited but are not directly accessible
* Update c++.html.markdownGeorge Gognadze2015-10-07-1/+1
| | | spelling error
* GrammarPushkar Sharma2015-10-05-2/+2
| | | the address
* Fixed a mistake from previous commit.Pushkar Sharma2015-10-05-2/+2
| | | Better explained reference address.
* Update c++.html.markdownPushkar Sharma2015-10-04-0/+6
| | | Regarding issue #1216, Better explaining the Reference 'fooRef'.
* Add to contributorsAlva Connor Waters2015-10-02-0/+1
|
* Misc. typos and formattingAlva Connor Waters2015-10-02-33/+39
|
* More explanation on virtual destructorsAlva Connor Waters2015-10-02-1/+4
|
* Clarify character literalsAlva Connor Waters2015-10-02-4/+4
|
* Update c++.html.markdownGeorge Gognadze2015-10-01-1/+1
| | | | | o should be capitalized. this: overrides should be: Overrides
* A note about RVOGeoff Liu2015-09-02-1/+4
|
* Now that we explained move semanticsGeoff Liu2015-08-30-1/+2
|
* More about temporary objectsGeoff Liu2015-08-30-0/+16
|
* Merge remote-tracking branch 'upstream/master'Geoff Liu2015-08-30-3/+4
|\
| * Fix C++ namespace explanationGeoff Liu2015-08-28-3/+4
| |
* | A little more about C++ referencesGeoff Liu2015-08-30-0/+51
|/
* Updated other exception to also be runtime_error type instead.Adam2015-06-02-1/+1
|
* Using std::runtime_error instead of std::exception.Adam2015-06-02-1/+2
|
* Template example class should have public method so it can get called ↵Adam2015-06-01-0/+1
| | | | externally.
* Exceptions do not take a string argument in their constructor.Adam2015-06-01-2/+2
|
* Add missing semicolons.Adam2015-05-31-2/+2
|
* Remove return type from Dog class constructor and destructor, change ↵Adam2015-05-31-3/+3
| | | | nonexistant printDog function to print.
* [c++/en] Fixed typos.Hans Ole Hatzel2015-05-20-3/+3
|
* comment changesGeoff Liu2015-05-06-3/+3
|
* Response to commentsGeoff Liu2015-05-05-8/+31
|
* Minor fixGeoff Liu2015-05-04-3/+4
|
* Templates and suchGeoff Liu2015-05-04-0/+102
|
* Neither gcc nor clang accept void main.MoreMoschops2015-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 spellingArnie972015-04-11-1/+1
|
* Closes #1000Arnie972015-03-13-3/+5
|
* fixed some typosRiku-Pekka Silvola2015-02-25-2/+2
|
* Reassignment to reference doesn't cause errorGeoff Liu2014-12-01-1/+4
|
* correcting the setName method Subramanian2014-10-27-1/+1
| | | set the method argument dogsName to name, instead of doggie_name
* Address @levibostian's concerns for #800Matt Kline2014-10-17-15/+41
|
* Add C++ section about RAIIMatt Kline2014-10-17-1/+129
| | | | | Future contributions will include standard library containers and C++11 features.
* Spell out favorite (instead of fav) in C++ docMatt Kline2014-10-17-3/+3
|
* Minor C++ fixesMatt Kline2014-10-12-3/+6
|
* Major overhaul of C++ documentationMatt Kline2014-10-12-222/+305
| | | | | | | | | | | | - Cleaned up and rephrased comments - Removed old and erroneous information - Normalized indentation to four spaces - Normalized style to "Stroustrup style" (http://www.stroustrup.com/bs_faq2.html#layout-style) - Added a section on references In the near future I plan on additional sections covering idiomatic use, such as RAII and C++11 paradigms.