@asifamin13 commented on this pull request.
> +
+ 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 or view it on GitHub:
https://github.com/geany/geany-plugins/pull/1221#discussion_r1096812788
You are receiving this because you are subscribed to this thread.
Message ID: <geany/geany-plugins/pull/1221/review/[email protected]>