ports/graphics/lsys/patches/patch-util_h

15 lines
291 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
dude, it's not even constant
Index: util.h
--- util.h.orig
+++ util.h
@@ -149,7 +149,7 @@ struct error : exception {
{ };
template<typename T>
- error &operator <<(const T &s) const t_no
+ error &operator <<(const T &s) t_no
{ msg.append (s); return *this; };
};