@asifamin13 commented on this pull request.


In bracketcolors/src/BracketMap.h:

> +
+    static Length& GetLength(Bracket &bracket) {
+        return std::get<0>(bracket);
+    }
+    static Order& GetOrder(Bracket &bracket) {
+        return std::get<1>(bracket);
+    }
+
+    static const Length& GetLength(const Bracket &bracket) {
+        return std::get<0>(bracket);
+    }
+    static const Order& GetOrder(const Bracket &bracket) {
+        return std::get<1>(bracket);
+    }
+};
+

this was from a standard template I use, fixed


Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you are subscribed to this thread.Message ID: <geany/geany-plugins/pull/1221/review/1284356082@github.com>