summaryrefslogtreecommitdiff
blob: ff0fe2be5da88278f8f7e9012ee82853ebbd84c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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)
 {}