]> www.ginac.de Git - ginac.git/commitdiff
Suppress compiler warnings about inconsistent override.
authorRichard Kreckel <kreckel@ginac.de>
Sat, 1 Oct 2016 22:45:11 +0000 (00:45 +0200)
committerRichard Kreckel <kreckel@ginac.de>
Sat, 1 Oct 2016 22:45:11 +0000 (00:45 +0200)
The introduction of the 'override' keyword in GiNaC in d5b86dd10 was
deliberately incomplete: Duplication of code in macros was avoided.
It turns out that some compilers (e.g. g++ -Wsuggest-override or clang++
-Wall) complain if the 'override' keyword is used inconsistently. Let's
make this consistent now, even if it leads to the introduction of two
more macros.

ginac/print.h
ginac/registrar.h

index 675219b664580de6aa8d03fb1050ccdd1220dc30..8f5656753f481981f0a7cc26e3b4a10f9a571289 100644 (file)
@@ -59,24 +59,33 @@ public:
 };
 
 
-/** Macro for inclusion in the declaration of a print_context class.
- *  It declares some functions that are common to all classes derived
- *  from 'print_context' as well as all required stuff for the GiNaC
- *  registry. */
-#define GINAC_DECLARE_PRINT_CONTEXT(classname, supername) \
+/** Common part of GINAC_DECLARE_PRINT_CONTEXT_BASE and GINAC_DECLARE_PRINT_CONTEXT_DERIVED. */
+#define GINAC_DECLARE_PRINT_CONTEXT_COMMON(classname)  \
 public: \
-       typedef supername inherited; \
        friend class function_options; \
        friend class registered_class_options; \
-public: \
        static const GiNaC::print_context_class_info &get_class_info_static(); \
+       classname();
+
+#define GINAC_DECLARE_PRINT_CONTEXT_BASE(classname) \
+       GINAC_DECLARE_PRINT_CONTEXT_COMMON(classname) \
        virtual const GiNaC::print_context_class_info &get_class_info() const { return classname::get_class_info_static(); } \
        virtual const char *class_name() const { return classname::get_class_info_static().options.get_name(); } \
-       \
-       classname(); \
        virtual classname * duplicate() const { return new classname(*this); } \
 private:
 
+/** Macro for inclusion in the declaration of a print_context class.
+ *  It declares some functions that are common to all classes derived
+ *  from 'print_context' as well as all required stuff for the GiNaC
+ *  registry. */
+#define GINAC_DECLARE_PRINT_CONTEXT(classname, supername) \
+       GINAC_DECLARE_PRINT_CONTEXT_COMMON(classname) \
+       typedef supername inherited; \
+       const GiNaC::print_context_class_info &get_class_info() const override { return classname::get_class_info_static(); } \
+       const char *class_name() const override { return classname::get_class_info_static().options.get_name(); } \
+       classname * duplicate() const override { return new classname(*this); } \
+private:
+
 /** Macro for inclusion in the implementation of each print_context class. */
 #define GINAC_IMPLEMENT_PRINT_CONTEXT(classname, supername) \
 const GiNaC::print_context_class_info &classname::get_class_info_static() \
@@ -92,7 +101,7 @@ extern unsigned next_print_context_id;
 /** Base class for print_contexts. */
 class print_context
 {
-       GINAC_DECLARE_PRINT_CONTEXT(print_context, void)
+       GINAC_DECLARE_PRINT_CONTEXT_BASE(print_context)
 public:
        print_context(std::ostream &, unsigned options = 0);
        virtual ~print_context() {}
index 1c30253497b8c650e8c254d44eb8b53039a6b670..867d63aae7413d8a5c9ea1445485af8b8aa20e79 100644 (file)
@@ -125,32 +125,35 @@ private:
 
 typedef class_info<registered_class_options> registered_class_info;
 
-
-/** Primary macro for inclusion in the declaration of each registered class. */
-#define GINAC_DECLARE_REGISTERED_CLASS_NO_CTORS(classname, supername) \
-public: \
-       typedef supername inherited; \
+/** Common part of GINAC_DECLARE_REGISTERED_CLASS_NO_CTORS and GINAC_DECLARE_REGISTERED_CLASS. */
+#define GINAC_DECLARE_REGISTERED_CLASS_COMMON(classname)       \
 private: \
        static GiNaC::registered_class_info reg_info; \
 public: \
        static GiNaC::registered_class_info &get_class_info_static() { return reg_info; } \
-       virtual const GiNaC::registered_class_info &get_class_info() const { return classname::get_class_info_static(); } \
-       virtual GiNaC::registered_class_info &get_class_info() { return classname::get_class_info_static(); } \
-       virtual const char *class_name() const { return classname::get_class_info_static().options.get_name(); } \
        class visitor { \
        public: \
                virtual void visit(const classname &) = 0; \
                virtual ~visitor() {}; \
        };
 
+/** Primary macro for inclusion in the declaration of each registered class. */
+#define GINAC_DECLARE_REGISTERED_CLASS_NO_CTORS(classname, supername) \
+       GINAC_DECLARE_REGISTERED_CLASS_COMMON(classname) \
+       typedef supername inherited; \
+       virtual const GiNaC::registered_class_info &get_class_info() const { return classname::get_class_info_static(); } \
+       virtual GiNaC::registered_class_info &get_class_info() { return classname::get_class_info_static(); } \
+       virtual const char *class_name() const { return classname::get_class_info_static().options.get_name(); } \
+private:
+
 /** Macro for inclusion in the declaration of each registered class.
  *  It declares some functions that are common to all classes derived
  *  from 'basic' as well as all required stuff for the GiNaC class
  *  registry (mainly needed for archiving). */
 #define GINAC_DECLARE_REGISTERED_CLASS(classname, supername) \
-       GINAC_DECLARE_REGISTERED_CLASS_NO_CTORS(classname, supername) \
+       GINAC_DECLARE_REGISTERED_CLASS_COMMON(classname) \
        template<class B, typename... Args> friend B & dynallocate(Args &&... args); \
-public: \
+       typedef supername inherited; \
        classname(); \
        classname * duplicate() const override { \
                classname * bp = new classname(*this); \
@@ -165,6 +168,9 @@ public: \
                else \
                        inherited::accept(v); \
        } \
+       const GiNaC::registered_class_info &get_class_info() const override { return classname::get_class_info_static(); } \
+       GiNaC::registered_class_info &get_class_info() override { return classname::get_class_info_static(); } \
+       const char *class_name() const override { return classname::get_class_info_static().options.get_name(); } \
 protected: \
        int compare_same_type(const GiNaC::basic & other) const override; \
 private: