diff options
| -rw-r--r-- | c++.html.markdown | 1 | 
1 files changed, 1 insertions, 0 deletions
| diff --git a/c++.html.markdown b/c++.html.markdown index b214de7a..d049408a 100644 --- a/c++.html.markdown +++ b/c++.html.markdown @@ -445,6 +445,7 @@ int main () {  // define a class or function that takes a type parameter:  template<class T>  class Box { +public:      // In this class, T can be used as any other type.      void insert(const T&) { ... }  }; | 
