Re: [pygccxml-development] crash on hello world in PyppTutorial
Brought to you by:
mbaas,
roman_yakovenko
|
From: Matthias B. <ba...@ir...> - 2006-08-23 13:57:59
|
Neal Becker wrote: > I just tried the hello world example from > https://realityforge.vrsource.org/view/PyppApi/PyppTutorial and got a crash: > [...] > running GCC-XML: world.h:5: error: `string' undeclared in namespace `std' The include file was missing in the example. You have to add the following line at the top of world.h: #include <string> - Matthias - |