1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Minor simplification.

This commit is contained in:
Sergey Prigogin 2009-01-26 02:45:52 +00:00
parent 34bf4e50eb
commit 01ab0bb184

View file

@ -3676,7 +3676,7 @@ public class AST2TemplateTests extends AST2BaseTest {
// template<typename _CharT>
// struct BasicString : public VersaString<_CharT> {
// typedef typename VersaString<_CharT>::size_type size_type;
// BasicString substr(size_type __pos = 0) const;
// BasicString substr(size_type pos) const;
// };
//
// void test(BasicString<char> s) {