Remove bogus ; after } in documentation

This commit is contained in:
Olly Betts 2014-11-05 10:17:22 +13:00
commit e047d2e2bd
4 changed files with 17 additions and 17 deletions

View file

@ -3567,7 +3567,7 @@ It is also possible to separate these declarations from the template class. For
template<class T> class List {
...
public:
List() { };
List() { }
T get(int index);
...
};