Skip to content
Snippets Groups Projects
Commit 95a88795 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

tidy: const qualification in declaration is not needed

parent ca313171
No related branches found
No related tags found
1 merge request!224Tidy fixes following the merger of new normalization
...@@ -40,37 +40,37 @@ public: ...@@ -40,37 +40,37 @@ public:
template < > template < >
class ObjectFactoryImpl < const char * const & > { class ObjectFactoryImpl < const char * const & > {
public: public:
static Object construct ( const char * const string ); static Object construct ( const char * string );
}; };
   
template < > template < >
class ObjectFactoryImpl < char * const & > { class ObjectFactoryImpl < char * const & > {
public: public:
static Object construct ( char * const string ); static Object construct ( char * string );
}; };
   
template < > template < >
class ObjectFactoryImpl < const char * & > { class ObjectFactoryImpl < const char * & > {
public: public:
static Object construct ( const char * const string ); static Object construct ( const char * string );
}; };
   
template < > template < >
class ObjectFactoryImpl < char * & > { class ObjectFactoryImpl < char * & > {
public: public:
static Object construct ( char * const string ); static Object construct ( char * string );
}; };
   
template < > template < >
class ObjectFactoryImpl < const char * const > { class ObjectFactoryImpl < const char * const > {
public: public:
static Object construct ( const char * const string ); static Object construct ( const char * string );
}; };
   
template < > template < >
class ObjectFactoryImpl < char * const > { class ObjectFactoryImpl < char * const > {
public: public:
static Object construct ( char * const string ); static Object construct ( char * string );
}; };
   
template < > template < >
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment