# # # patch "ChangeLog" # from [ea9b2602674e140076e54639586852957b0ba5ad] # to [b015c92f187a0165078814dc8f0dd4e7afb5c980] # # patch "sanity.hh" # from [d2494fb0f9188882227ca0ce6584efadb48fbb8b] # to [ae8401c8dc9afd96ed17ebdb5362fa3cf735d405] # ============================================================ --- ChangeLog ea9b2602674e140076e54639586852957b0ba5ad +++ ChangeLog b015c92f187a0165078814dc8f0dd4e7afb5c980 @@ -1,3 +1,7 @@ +2006-01-27 Stéphane Gimenez + + * sanity.hh: fix scoping issue revealed by gcc-4.1. + 2006-01-26 Richard Levitte * po/sv.po: One more translation. ============================================================ --- sanity.hh d2494fb0f9188882227ca0ce6584efadb48fbb8b +++ sanity.hh ae8401c8dc9afd96ed17ebdb5362fa3cf735d405 @@ -279,6 +279,8 @@ T const & obj; }; +void dump(std::string const & obj, std::string & out); + // The header line must be printed into the "out" string before // dump() is called. // This is so that even if the call to dump() throws an error, @@ -314,6 +316,4 @@ #define MM(obj) /* */ #endif -void dump(std::string const & obj, std::string & out); - #endif // __SANITY_HH__