On 05/02/2012 08:45 AM, Peter Breitenlohner wrote: > On Tue, 1 May 2012, Stefano Lattarini wrote: > >> From: Peter Breitenlohner <p...@mppmu.mpg.de> >> >> * t/objc-megademo.sh: New test, trying out a package using all >> of C, C++, Objective C and Objective C++ at the same time. >> * t/list-of-tests.mk: Add it. > > Hi Stefano, > > I have just noticed that in the source file foo.h > >> +## Library Sources. >> + >> +cat > foo.h << 'END' >> +#ifndef FOO_H >> +#define FOO_H >> + >> +#ifdef __cplusplus >> +#include <iostream> >> +extern "C" { >> +#else >> +#include <stdio.h> >> +#endif >> + >> +void world_c (void); >> +void world_objcxx (void); > > this declaration of world_objcxx is unused (left over from an earlier > demo version) and should be removed. > Thanks for spotting that. Fixed now.
Best regards, Stefano