#! /bin/sh /usr/share/dpatch/dpatch-run
## 30_bts565051_FTBFS_GCC4.5.dpatch by Matthias Klose <doko@ubuntu.com>
##
## All lines beginning with `## DP:' are a description of the patch.
## DP: Fix FTBFS with GCC 4.5
@DPATCH@
--- synopsis-0.12.orig/Synopsis/Parsers/Cxx/Types.cc
+++ synopsis-0.12/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)
{}