cyclegraph: bugfix - pop edges properly
[model-checker.git] / cyclegraph.h
index 749abf8ca847d9969016356101b153c4d0688a84..fcb1d30960843413814b07796c015866100cabf7 100644 (file)
@@ -102,11 +102,6 @@ class CycleNode {
        void clearRMW() { hasRMW = NULL; }
        const ModelAction * getAction() const { return action; }
        const Promise * getPromise() const { return promise; }
-
-       void popEdge() {
-               edges.pop_back();
-       }
-
        bool is_promise() const { return !action; }
        void resolvePromise(const ModelAction *writer);