]> granicus.if.org Git - graphviz/commitdiff
remove inline no-op on C++ methods
authorMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 12 Jun 2021 17:01:56 +0000 (10:01 -0700)
committerMatthew Fernandez <matthew.fernandez@gmail.com>
Sat, 19 Jun 2021 16:13:51 +0000 (09:13 -0700)
Methods defined within a class definition are implied inline. Adding the inline
keyword does nothing.

lib/vpsc/constraint.h
lib/vpsc/generate-constraints.h
lib/vpsc/variable.h

index 8260de25eed15370f71c1aafffcadd8af0bdc02f..2d35d6d20964da866664f205ea460f7246312021 100644 (file)
@@ -31,7 +31,7 @@ public:
        double lm;
        Constraint(Variable *left, Variable *right, double gap, bool equality=false);
        ~Constraint();
-       inline double slack() const { return right->position() - gap - left->position(); }
+       double slack() const { return right->position() - gap - left->position(); }
        long timeStamp;
        bool active;
        bool visited;
index 2e95803196d3c8a26770c34f681462fb96833291..0b326c4bb74497fbeb87c34548ce0af3ec91f53c 100644 (file)
@@ -54,14 +54,14 @@ public:
                maxY=y+height()-yBorder;
                minY=y;
        }
-       inline double overlapX(const Rectangle &r) const {
+       double overlapX(const Rectangle &r) const {
                if (getCentreX() <= r.getCentreX() && r.minX < getMaxX())
                        return getMaxX() - r.minX;
                if (r.getCentreX() <= getCentreX() && minX < r.getMaxX())
                        return r.getMaxX() - minX;
                return 0;
        }
-       inline double overlapY(const Rectangle &r) const {
+       double overlapY(const Rectangle &r) const {
                if (getCentreY() <= r.getCentreY() && r.minY < getMaxY())
                        return getMaxY() - r.minY;
                if (r.getCentreY() <= getCentreY() && minY < r.getMaxY())
index 9002043e5d96d9c723402f82e8eba2a60095564c..bf79de4a944b0f2478fe6c3af72318d594f55596 100644 (file)
@@ -35,7 +35,7 @@ public:
        Constraints in;
        Constraints out;
        char *toString();
-       inline Variable(const int id, const double desiredPos, const double weight)
+       Variable(const int id, const double desiredPos, const double weight)
                : id(id)
                , desiredPosition(desiredPos)
                , weight(weight)
@@ -43,7 +43,7 @@ public:
                , visited(false)
        {
        }
-       inline double position() const {
+       double position() const {
                return block->posn+offset;
        }
 };