Use const literals.

This commit is contained in:
Roberto Raggi
2009-12-01 11:33:13 +01:00
parent b792b934e4
commit fade61a8a9
38 changed files with 284 additions and 289 deletions

View File

@@ -56,14 +56,11 @@ namespace CPlusPlus {
class CPLUSPLUS_EXPORT Name
{
Name(const Name &other);
void operator =(const Name &other);
public:
Name();
virtual ~Name();
virtual Identifier *identifier() const = 0;
virtual const Identifier *identifier() const = 0;
bool isNameId() const;
bool isTemplateNameId() const;