Commit message (Collapse) | Author | Age | Lines | |
---|---|---|---|---|
* | 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 |
| | ||||
* | correcting the setName method | Subramanian | 2014-10-27 | -1/+1 |
| | | | set the method argument dogsName to name, instead of doggie_name | |||
* | Address @levibostian's concerns for #800 | Matt Kline | 2014-10-17 | -15/+41 |
| | ||||
* | Add C++ section about RAII | Matt Kline | 2014-10-17 | -1/+129 |
| | | | | | Future contributions will include standard library containers and C++11 features. | |||
* | Spell out favorite (instead of fav) in C++ doc | Matt Kline | 2014-10-17 | -3/+3 |
| | ||||
* | Minor C++ fixes | Matt Kline | 2014-10-12 | -3/+6 |
| | ||||
* | Major overhaul of C++ documentation | Matt Kline | 2014-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. | |||
* | Remove trailing whitspace from c++.html.markdown | Matt Kline | 2014-10-09 | -264/+265 |
| | ||||
* | Add self as contributor to C++ doc | Matt Kline | 2014-10-09 | -0/+1 |
| | ||||
* | Added correct syntax for c++ inheritance. | eternalthinker | 2014-09-24 | -4/+3 |
| | | | [more] Minor indent correction at namespaces intro example | |||
* | Added missing ";" | Kirill | 2014-09-13 | -3/+3 |
| | ||||
* | Created c++ tutorial | Steven Basart | 2014-09-10 | -0/+349 |
c++ |