You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-util/synopsis/files/synopsis-0.12-gcc45.patch

18 lines
482 B

Fixing build with gcc 4.5
http://bugs.gentoo.org/show_bug.cgi?id=318429
Patch written by Kacper Kowalik <xarthisius.kk@gmail.com>
--- Synopsis/Parsers/Cxx/Types.cc
+++ Synopsis/Parsers/Cxx/Types.cc
@@ -169,7 +169,7 @@
// Class Types::FuncPtr
//
-FuncPtr::FuncPtr(Type::Type* ret, const Mods& premods, const Type::vector& params)
+FuncPtr::FuncPtr(Type* ret, const Mods& premods, const Type::vector& params)
: m_return(ret), m_premod(premods), m_params(params)
{}